mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-29 08:20:20 +02:00
* Use eval instead of eval-in-module.
This commit is contained in:
parent
a261c0e933
commit
3b505adf7d
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
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.
|
||||
|
|
|
@ -869,7 +869,7 @@
|
|||
(let loop ((sexp (read file)))
|
||||
(if (not (eof-object? sexp))
|
||||
(begin
|
||||
(eval-in-module sexp m)
|
||||
(eval sexp m)
|
||||
(loop (read file)))))))
|
||||
(module-map (lambda (name var)
|
||||
(cons name (variable-ref var)))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue