1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-05 11:40:20 +02:00

*** empty log message ***

This commit is contained in:
Mikael Djurfeldt 1999-08-05 12:08:53 +00:00
parent ef1ae5630a
commit eba968840d
2 changed files with 16 additions and 0 deletions

View file

@ -1,3 +1,17 @@
1999-08-05 Mikael Djurfeldt <mdj@thalamus.nada.kth.se>
GOOPS needs the observer protocol specified for the new module
system. Here's a simple version for the old module system:
* boot-9.scm (module-observers, module-weak-observers,
module-observer-id, set-module-observers!,
set-module-observer-id!): New accessors.
(module-type): Added slots `observers', `weak-observers' and
`observer-id'.
(module-observe, module-observe-weak, module-unobserve,
module-modified!): New procedures.
(module-make-local-var!, module-add!, module-remove!,
module-clear!, module-define!, module-use!): Call module-modified!.
1999-07-29 Marius Vollmer <mvo@zagadka.ping.de>
* boot-9.scm (error-catching-loop): Correct non-RnRS usage of internal

View file

@ -1,5 +1,7 @@
1999-08-05 Mikael Djurfeldt <mdj@thalamus.nada.kth.se>
* feature.c, feature.h (scm_c_run_hook): Added.
* eval.c (SCM_CEVAL:SCM_IM_DISPATCH): Bugfix: Jump back to
cdrxnoap and loopnoap instead of begin and loop.