blob: 87a52a216df24b76ce7abf7d491319fd143eb8c3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
|
2001-08-25 Marius Vollmer <mvo@zagadka.ping.de>
* Makefile.am, goops/Makefile.am: (AUTOMAKE_OPTIONS): Change
"foreign" to "gnu".
2001-07-29 Marius Vollmer <mvo@zagadka.ping.de>
* goops/dispatch.scm (hashset-index): Renumbered, since the vcell
slot of structs has been removed.
2001-07-18 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
* goops/util.scm: Updated copyright notice.
2001-07-17 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
* goops/save.scm: Use `re-export' instead of `export' when
re-exporting `make-unbound'.
2001-06-05 Marius Vollmer <mvo@zagadka.ping.de>
* goops.scm: Use `re-export' instead of `export' when re-exporting
`class-of'.
2001-05-19 Marius Vollmer <mvo@zagadka.ping.de>
* goops.scm: Call `%init-goops-builtins' instead of using the
`(oop goops goopscore)' module.
2001-05-10 Marius Vollmer <mvo@zagadka.ping.de>
* goops/compile.scm (compile-method): Insert comment that
`procedure-source' can not be guaranteed to be reliable or
efficient.
2001-05-05 Marius Vollmer <mvo@zagadka.ping.de>
* goops.scm (initialize-object-procedure): Use
`valid-object-procedure?' instead of explicit tag magic.
(object-procedure-tags): Removed.
* goops/util.scm (top-level-env): Use `current-module' instead of
the deprecated *top-level-lookup-closure*.
2001-04-28 Rob Browning <rlb@cs.utexas.edu>
* goops/save.scm (write-readably): rename list* to cons*.
* goops.scm (method): rename list* to cons*.
2001-04-10 Mikael Djurfeldt <mdj@linnaeus.mit.edu>
* goops/Makefile.am, goops/goopscore.scm: Reverted changes of
2001-04-03, 2001-03-09.
2001-04-03 Keisuke Nishida <kxn30@po.cwru.edu>
* goops/Makefile.am (goops_sources): Include goopscore.scm.
Thanks to Dale P. Smith.
2001-03-29 Keisuke Nishida <kxn30@po.cwru.edu>
* goops/goopscore.scm: New file.
2001-03-09 Mikael Djurfeldt <mdj@linnaeus.mit.edu>
* goops.scm (define-method): Only accept new syntax.
* Makefile.am: Added old-define-method.scm.
* goops/old-define-method.scm: New file.
* goops.scm, goops/save.scm, goops/composite-slot.scm,
goops/active-slot.scm: Use new method syntax.
2001-03-04 Mikael Djurfeldt <mdj@linnaeus.mit.edu>
* goops/compile.scm (compile-method): Tag method closure for body
expansion.
* goops.scm (change-object-class): Quote empty list constants.
(method): Reverted previous change (enclosing body);
Quote empty list.
(initialize <method>): Supply `dummy-procedure' as default instead
of creating a new closure.
* goops/internal.scm: Re-export (oop goops) without copying
bindings.
2001-02-23 Keisuke Nishida <kxn30@po.cwru.edu>
* goops.scm (method): Enclosed BODY by `(let () ...)'.
This allows local defines at the beginning of methods.
2000-12-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
* goops/save.scm (load-objects): eval-in-module is deprecated.
Use eval instead.
2000-11-24 Dirk Herrmann <D.Herrmann@tu-bs.de>
* goops.scm: Don't export removed %logand any more.
* goops/dispatch.scm (cache-try-hash!): Use logand instead of
%logand.
2000-11-06 Mikael Djurfeldt <mdj@linnaeus.mit.edu>
* goops.scm (internal-add-method!): Set n-specialized of a generic
function to the number of specializers regardless if it has rest
args or not.
* goops/dispatch.scm (method-cache-install!): Use n-specialized +
1 args for type matching. (Thanks to Lars J. Aas.)
2000-10-23 Mikael Djurfeldt <mdj@linnaeus.mit.edu>
* goops.scm (goops-error): Removed use of oldfmt.
|