mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-02 21:10:27 +02:00
* boot-9.scm (process-define-module): Bug fixed.
This commit is contained in:
parent
3c9a524f01
commit
88c4ba2aef
2 changed files with 9 additions and 5 deletions
|
@ -1,3 +1,7 @@
|
|||
2001-07-31 Keisuke Nishida <knishida@nurs.or.jp>
|
||||
|
||||
* boot-9.scm (process-define-module): Bug fixed.
|
||||
|
||||
2001-07-24 Marius Vollmer <mvo@zagadka.ping.de>
|
||||
|
||||
* syncase.scm (psyncomp): Removed, it is now in
|
||||
|
|
|
@ -1747,14 +1747,14 @@
|
|||
(unrecognized kws))
|
||||
(let* ((interface-args (cadr kws))
|
||||
(interface (apply resolve-interface interface-args)))
|
||||
(and (eq? (car kws) 'use-syntax)
|
||||
(or (symbol? (car spec))
|
||||
(and (eq? (car kws) #:use-syntax)
|
||||
(or (symbol? (caar interface-args))
|
||||
(error "invalid module name for use-syntax"
|
||||
spec))
|
||||
(car interface-args)))
|
||||
(set-module-transformer!
|
||||
module
|
||||
(module-ref interface (car
|
||||
(last-pair (car interface-args)))
|
||||
(module-ref interface
|
||||
(car (last-pair (car interface-args)))
|
||||
#f)))
|
||||
(loop (cddr kws)
|
||||
(cons interface reversed-interfaces)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue