mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-07-04 08:40:21 +02:00
(environment-module): Change eval-closure-module call
back to procedure-property lookup. (This completes the reversion of the change made on 2005-06-10, which was only partially undone by the change on 2005-08-01.)
This commit is contained in:
parent
35a69665b8
commit
16c2ec02fa
2 changed files with 8 additions and 1 deletions
|
@ -1,3 +1,10 @@
|
||||||
|
2006-11-13 Neil Jerram <neil@ossau.uklinux.net>
|
||||||
|
|
||||||
|
* boot-9.scm (environment-module): Change eval-closure-module call
|
||||||
|
back to procedure-property lookup. (This completes the reversion
|
||||||
|
of the change made on 2005-06-10, which was only partially undone
|
||||||
|
by the change on 2005-08-01.)
|
||||||
|
|
||||||
2006-10-05 Kevin Ryde <user42@zip.com.au>
|
2006-10-05 Kevin Ryde <user42@zip.com.au>
|
||||||
|
|
||||||
* ftw.scm (visited?-proc): Use hashv since we know we're getting
|
* ftw.scm (visited?-proc): Use hashv since we know we're getting
|
||||||
|
|
|
@ -258,7 +258,7 @@
|
||||||
|
|
||||||
(define (environment-module env)
|
(define (environment-module env)
|
||||||
(let ((closure (and (pair? env) (car (last-pair env)))))
|
(let ((closure (and (pair? env) (car (last-pair env)))))
|
||||||
(and closure (eval-closure-module closure))))
|
(and closure (procedure-property closure 'module))))
|
||||||
|
|
||||||
|
|
||||||
;;; {Records}
|
;;; {Records}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue