File size: 9,757 Bytes
3dcad1f |
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 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 |
2008-03-18 Ludovic Courtès <[email protected]>
* goops/util.scm (mapappend): Now an alias for SRFI-1's
`append-map', which is more efficient.
(every, any): Used and re-exported from SRFI-1.
2008-03-12 Ludovic Courtès <[email protected]>
* goops/describe.scm (describe): Provide `describe' (symbol),
not `"describe"' (string). Reported by David Pirotte
<[email protected]>.
2007-05-05 Ludovic Courtès <[email protected]>
* goops/internal.scm: Use the public module API rather than hack
with `%module-public-interface', `nested-ref', et al.
2005-03-24 Mikael Djurfeldt <[email protected]>
* accessors.scm, simple.scm: New files.
* goops.scm (standard-define-class): Removed; Export
define-class as standard-define-class.
2005-01-18 Marius Vollmer <[email protected]>
* goops.scm (class-of): Changed from being re-exported to just
being exported.
2004-02-08 Mikael Djurfeldt <[email protected]>
* Makefile.am, goops/Makefile.am (TAGS_FILES): Use this variable
instead of ETAGS_ARGS so that TAGS can be built using separate
build directory.
2004-01-12 Marius Vollmer <[email protected]>
* goops.scm (compute-get-n-set): Use '#:' in error message instead
of ':'. Thanks to Richard Todd!
2003-04-20 Mikael Djurfeldt <[email protected]>
* goops.scm (compute-getters-n-setters): Allow for primitive
procedure thunks. (Thanks to Neil W. Van Dyke.)
2003-04-19 Mikael Djurfeldt <[email protected]>
* goops/dispatch.scm (cache-hashval): Corrected termination
condition for hashval computation. (Previously, it made erroneous
assumptions about the representation of environments; Thanks to
Andreas Rottmann.)
2003-04-17 Mikael Djurfeldt <[email protected]>
* goops.scm (compute-getters-n-setters): Check for bad init-thunk.
(eqv?): Added default method.
(equal?): New default method which uses eqv?.
2003-04-15 Mikael Djurfeldt <[email protected]>
* goops.scm (compute-getter-method): For custom getter: Check
boundness even if there is an init-thunk. (The getter can return
#<unbound> even if the slot has been set before.)
(remove-class-accessors!): Also remove accessor-method from its
accessor.
2003-04-13 Mikael Djurfeldt <[email protected]>
* goops.scm (compute-getters-n-setters/verify-accessors): Better
check of format of value returned by compute-get-n-set.
(compute-getters-n-setters): Extended format of slot
getters-n-setters to indicate position and size of slot memory
allocated in instances.
2003-04-05 Marius Vollmer <[email protected]>
* Changed license terms to the plain LGPL thru-out.
2003-03-19 Mikael Djurfeldt <[email protected]>
* goops.scm (process-class-pre-define-accessor): Temporary kludge
to fix a problem introduced by my previous change.
2003-03-17 Mikael Djurfeldt <[email protected]>
* goops.scm (process-class-pre-define-generic,
process-class-pre-define-accessor, process-define-generic,
process-define-accessor): New functions.
(define-class-pre-definition): Use
process-class-pre-define-generic and
process-class-pre-define-accessor; Make sure not to create a new
local variable if the variable has been imported.
(define-generic): Use process-define-generic.
(define-accessor): Use process-define-accessor.
2003-03-12 Mikael Djurfeldt <[email protected]>
* goops.scm (merge-generics): Make sure not to merge a gf with
itself. That would be the cause of a real binding collision.
2003-03-11 Mikael Djurfeldt <[email protected]>
* goops/util.scm (filter): Removed. (Now supplied by core.)
* goops.scm (define-extended-generics): New syntax.
(<class> <operator-class> <entity-class> <entity>): Marked as
replacements.
(upgrade-accessor): Renamed from upgrade-generic-with-setter.
(ensure-accessor, upgrade-accessor): Rewritten to accomodate the
new <accessor> class.
(merge-accessors): Provide for merging of accessors imported from
different modules under the same name.
2003-03-07 Mikael Djurfeldt <[email protected]>
* goops.scm (equal?): Define default method.
(merge-generics): Provide for merging of generic functions
imported into a module under the same name.
2003-01-18 Mikael Djurfeldt <[email protected]>
* goops.scm (method): Construct a new copy of the constant '('())
for every macro invocation.
2003-01-08 Mikael Djurfeldt <[email protected]>
* goops.scm (upgrade-generic-with-setter,
compute-new-list-of-methods): Use methods slot directly instead of
generic-function-methods.
(upgrade-generic-with-setter): Handle <extended-generic>:s.
(define-extended-generic): New syntax.
(make-extended-generic): New function.
2002-12-08 Rob Browning <[email protected]>
* Makefile.am (subpkgdatadir): VERSION -> GUILE_EFFECTIVE_VERSION.
* goops/Makefile.am (subpkgdatadir): VERSION ->
GUILE_EFFECTIVE_VERSION.
2002-11-16 Dirk Herrmann <[email protected]>
* goops.scm (standard-define-class): Changed definition to form
a 'real' macro definition.
2002-07-13 Dirk Herrmann <[email protected]>
* goops.scm (define-generic, define-accessor): Make sure that
define-generic and define-accessor will continue to work when
mmacros are expanded before execution.
2002-07-13 Dirk Herrmann <[email protected]>
* goops.scm (define-class): Make sure that define-class will
continue to work when mmacros are expanded before execution.
2002-07-08 Dirk Herrmann <[email protected]>
* goops.scm (define-generic, define-accessor): Make sure that
implicit redefines only happen on top level.
* goops.scm (define-class, define-generic, define-accessor),
goops/stklos.scm (define-class): Use mmacros instead of macros.
2002-07-07 Dirk Herrmann <[email protected]>
* goops/save.scm (restore): Replaced "macro" by mmacro.
2001-10-21 Mikael Djurfeldt <mdj@linnaeus>
* goops.scm, goops/active-slot.scm, goops/compile.scm,
goops/composite-slot.scm, goops/describe.scm, goops/dispatch.scm,
goops/old-define-method.scm, goops/save.scm, goops/util.scm: Move
module the system directives `export', `export-syntax',
`re-export' and `re-export-syntax' into the `define-module' form.
This is the recommended way of exporting bindings.
2001-08-25 Marius Vollmer <[email protected]>
* Makefile.am, goops/Makefile.am: (AUTOMAKE_OPTIONS): Change
"foreign" to "gnu".
2001-07-29 Marius Vollmer <[email protected]>
* goops/dispatch.scm (hashset-index): Renumbered, since the vcell
slot of structs has been removed.
2001-07-18 Martin Grabmueller <[email protected]>
* goops/util.scm: Updated copyright notice.
2001-07-17 Martin Grabmueller <[email protected]>
* goops/save.scm: Use `re-export' instead of `export' when
re-exporting `make-unbound'.
2001-06-05 Marius Vollmer <[email protected]>
* goops.scm: Use `re-export' instead of `export' when re-exporting
`class-of'.
2001-05-19 Marius Vollmer <[email protected]>
* goops.scm: Call `%init-goops-builtins' instead of using the
`(oop goops goopscore)' module.
2001-05-10 Marius Vollmer <[email protected]>
* goops/compile.scm (compile-method): Insert comment that
`procedure-source' can not be guaranteed to be reliable or
efficient.
2001-05-05 Marius Vollmer <[email protected]>
* 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 <[email protected]>
* goops/save.scm (write-readably): rename list* to cons*.
* goops.scm (method): rename list* to cons*.
2001-04-10 Mikael Djurfeldt <[email protected]>
* goops/Makefile.am, goops/goopscore.scm: Reverted changes of
2001-04-03, 2001-03-09.
2001-04-03 Keisuke Nishida <[email protected]>
* goops/Makefile.am (goops_sources): Include goopscore.scm.
Thanks to Dale P. Smith.
2001-03-29 Keisuke Nishida <[email protected]>
* goops/goopscore.scm: New file.
2001-03-09 Mikael Djurfeldt <[email protected]>
* 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 <[email protected]>
* 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 <[email protected]>
* goops.scm (method): Enclosed BODY by `(let () ...)'.
This allows local defines at the beginning of methods.
2000-12-15 Dirk Herrmann <[email protected]>
* goops/save.scm (load-objects): eval-in-module is deprecated.
Use eval instead.
2000-11-24 Dirk Herrmann <[email protected]>
* 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 <[email protected]>
* 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 <[email protected]>
* goops.scm (goops-error): Removed use of oldfmt.
;; Local Variables:
;; coding: utf-8
;; End:
|