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

* boot-9.scm (process-define-module): Bug fixed.

This commit is contained in:
Keisuke Nishida 2001-07-31 14:08:04 +00:00
parent 3c9a524f01
commit 88c4ba2aef
2 changed files with 9 additions and 5 deletions

View file

@ -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

View file

@ -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)