* boot-9.scm (process-define-module): Handle #:duplicates.
[bpt/guile.git] / ice-9 / boot-9.scm
index 57f8a3e..daa9bf9 100644 (file)
@@ -1,31 +1,73 @@
 ;;; installed-scm-file
 
-;;;; Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
-;;;; 
+;;;; Copyright (C) 1995,1996,1997,1998,1999,2000,2001,2002, 2003 Free Software Foundation, Inc.
+;;;;
 ;;;; This program is free software; you can redistribute it and/or modify
 ;;;; it under the terms of the GNU General Public License as published by
 ;;;; the Free Software Foundation; either version 2, or (at your option)
 ;;;; any later version.
-;;;; 
+;;;;
 ;;;; This program is distributed in the hope that it will be useful,
 ;;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
 ;;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 ;;;; GNU General Public License for more details.
-;;;; 
+;;;;
 ;;;; You should have received a copy of the GNU General Public License
 ;;;; along with this software; see the file COPYING.  If not, write to
 ;;;; the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
 ;;;; Boston, MA 02111-1307 USA
-;;;; 
+;;;;
+;;;; As a special exception, the Free Software Foundation gives permission
+;;;; for additional uses of the text contained in its release of GUILE.
+;;;;
+;;;; The exception is that, if you link the GUILE library with other files
+;;;; to produce an executable, this does not by itself cause the
+;;;; resulting executable to be covered by the GNU General Public License.
+;;;; Your use of that executable is in no way restricted on account of
+;;;; linking the GUILE library code into it.
+;;;;
+;;;; This exception does not however invalidate any other reasons why
+;;;; the executable file might be covered by the GNU General Public License.
+;;;;
+;;;; This exception applies only to the code released by the
+;;;; Free Software Foundation under the name GUILE.  If you copy
+;;;; code from other Free Software Foundation releases into a copy of
+;;;; GUILE, as the General Public License permits, the exception does
+;;;; not apply to the code that you add in this way.  To avoid misleading
+;;;; anyone as to the status of such modified files, you must delete
+;;;; this exception notice from them.
+;;;;
+;;;; If you write modifications of your own for GUILE, it is your choice
+;;;; whether to permit this exception to apply to your modifications.
+;;;; If you do not wish that, delete this exception notice.
+;;;;
 \f
 
+;;; Commentary:
+
 ;;; This file is the first thing loaded into Guile.  It adds many mundane
 ;;; definitions and a few that are interesting.
 ;;;
-;;; The module system (hence the hierarchical namespace) are defined in this 
+;;; The module system (hence the hierarchical namespace) are defined in this
 ;;; file.
 ;;;
 
+;;; Code:
+
+\f
+;;; {Deprecation}
+;;;
+
+;; We don't have macros here, but we do want to define
+;; `begin-deprecated' early.
+
+(define begin-deprecated
+  (procedure->memoizing-macro
+   (lambda (exp env)
+     (if (include-deprecated-features)
+        `(begin ,@(cdr exp))
+        `#f))))
+
 \f
 ;;; {Features}
 ;;
 (define (provided? feature)
   (and (memq feature *features*) #t))
 
-;;; presumably deprecated.
-(define feature? provided?)
+(begin-deprecated
+ (define (feature? sym)
+   (issue-deprecation-warning
+    "`feature?' is deprecated.  Use `provided?' instead.")
+   (provided? sym)))
 
 ;;; let format alias simple-format until the more complete version is loaded
 (define format simple-format)
 ;;; {Trivial Functions}
 ;;;
 
-(define (id x) x)
+(define (identity x) x)
 (define (1+ n) (+ n 1))
-(define (-1+ n) (+ n -1))
-(define 1- -1+)
-(define return-it noop)
+(define (1- n) (+ n -1))
 (define (and=> value procedure) (and value (procedure value)))
-(define (make-hash-table k) (make-vector k '()))
 
-;;; apply-to-args is functionally redunant with apply and, worse,
+;;; apply-to-args is functionally redundant with apply and, worse,
 ;;; is less general than apply since it only takes two arguments.
 ;;;
-;;; On the other hand, apply-to-args is a syntacticly convenient way to 
+;;; On the other hand, apply-to-args is a syntacticly convenient way to
 ;;; perform binding in many circumstances when the "let" family of
 ;;; of forms don't cut it.  E.g.:
 ;;;
 ;;;    (apply-to-args (return-3d-mouse-coords)
-;;;      (lambda (x y z) 
+;;;      (lambda (x y z)
 ;;;            ...))
 ;;;
 
 (define (apply-to-args args fn) (apply fn args))
 
 \f
+
 ;;; {Integer Math}
 ;;;
 
                                (if (even? k) acc (proc acc x))
                                proc))))
 
-(define string-character-length string-length)
-
-
-
-;; A convenience function for combining flag bits.  Like logior, but
-;; handles the cases of 0 and 1 arguments.
-;;
-(define (flags . args)
-  (cond
-   ((null? args) 0)
-   ((null? (cdr args)) (car args))
-   (else (apply logior args))))
-
 \f
 ;;; {Symbol Properties}
 ;;;
        (symbol-pset! sym (delq! pair (symbol-pref sym))))))
 
 ;;; {General Properties}
+;;;
 
 ;; This is a more modern interface to properties.  It will replace all
 ;; other property-like things eventually.
       new-port))
 
 ;; 0: type-name, 1: fields
-(define record-type-vtable 
+(define record-type-vtable
   (make-vtable-vtable "prpr" 0
                      (lambda (s p)
                        (cond ((eq? s record-type-vtable)
 ;; Apply f to successive elements of l until exhaustion or f returns #f.
 ;; If returning early, return #f.  Otherwise, return the last value returned
 ;; by f.  If f has never been called because l is empty, return #t.
-;; 
+;;
 (define (and-map f lst)
   (let loop ((result #t)
             (l lst))
     (and (> sl sufl)
         (string=? (substring str (- sl sufl) sl) suffix))))
 
+(define (system-error-errno args)
+  (if (eq? (car args) 'system-error)
+      (car (list-ref args 4))
+      #f))
+
 \f
 ;;; {Error Handling}
 ;;;
 (define (tms:cutime obj) (vector-ref obj 3))
 (define (tms:cstime obj) (vector-ref obj 4))
 
-(define (file-position . args) (apply ftell args))
-(define (file-set-position . args) (apply fseek args))
+(define file-position ftell)
+(define (file-set-position port offset . whence)
+  (let ((whence (if (eq? whence '()) SEEK_SET (car whence))))
+    (seek port offset whence)))
 
 (define (move->fdes fd/port fd)
   (cond ((integer? fd/port)
     (if (pair? maybe-fd)
        (set-port-revealed! port 1))
     port))
-  
+
 (define (dup->inport port/fd . maybe-fd)
   (apply dup->port port/fd "r" maybe-fd))
 
       (putenv (string-append name "=" value))
       (putenv name)))
 
+(define (unsetenv name)
+  "Remove the entry for NAME from the environment."
+  (putenv name))
+
 \f
 ;;; {Load Paths}
 ;;;
 
 ;; This is mostly for the internal use of the code generated by
 ;; scm_compile_shell_switches.
+
+(define (turn-on-debugging)
+  (debug-enable 'debug)
+  (debug-enable 'backtrace)
+  (read-enable 'positions))
+
 (define (load-user-init)
   (let* ((home (or (getenv "HOME")
                   (false-if-exception (passwd:dir (getpwuid (getuid))))
 (define (sqrt z)
   (if (real? z)
       (if (negative? z) (make-rectangular 0 ($sqrt (- z)))
-         ($sqrt z))
+          ($sqrt z))
       (make-polar ($sqrt (magnitude z)) (/ (angle z) 2))))
 
 (define expt
   (let ((integer-expt integer-expt))
     (lambda (z1 z2)
       (cond ((integer? z2)
-            (if (>= z2 0)
-                (integer-expt z1 z2)
-                (/ 1 (integer-expt z1 (- z2)))))
+            (if (negative? z2)
+                (/ 1 (integer-expt z1 (- z2)))
+                (integer-expt z1 z2)))
            ((and (real? z2) (real? z1) (>= z1 0))
             ($expt z1 z2))
            (else
 
 (read-hash-extend #\' (lambda (c port)
                        (read port)))
-(read-hash-extend #\. (lambda (c port)
-                       (eval (read port) (interaction-environment))))
+
+(define read-eval? (make-fluid))
+(fluid-set! read-eval? #f)
+(read-hash-extend #\.
+                  (lambda (c port)
+                    (if (fluid-ref read-eval?)
+                        (eval (read port) (interaction-environment))
+                        (error
+                         "#. read expansion found and read-eval? is #f."))))
 
 \f
 ;;; {Command Line Options}
           (display help)
           (newline))))
    kw-desc))
-                 
 
-          
+
+
 (define (transform-usage-lambda cases)
   (let* ((raw-usage (delq! 'else (map car cases)))
         (usage-sans-specials (map (lambda (x)
       (if (> (length args) 3)
          (error "Too many args to make-module." args))
 
-      (let ((size (parse-arg 0 1021))
+      (let ((size (parse-arg 0 31))
            (uses (parse-arg 1 '()))
            (binder (parse-arg 2 #f)))
 
            (error
             "Lazy-binder expected to be a procedure or #f." binder))
 
-       (let ((module (module-constructor (make-vector size '())
+       (let ((module (module-constructor (and (not (zero? size))
+                                              (make-hash-table size))
                                          uses binder #f #f #f #f
                                          '()
                                          (make-weak-value-hash-table 31)
       ;; to maximally one module.
       (set-procedure-property! closure 'module module))))
 
-;;; This procedure is depreated
-;;;
-(define eval-in-module eval)
-
 \f
 ;;; {Observer protocol}
 ;;;
 ;;;
 
 ;; module-search fn m
-;; 
+;;
 ;; return the first non-#f result of FN applied to M and then to
 ;; the modules in the uses of m, and so on recursively.  If all applications
 ;; return #f, then so does this function.
 
 ;;; {Is a symbol interned in a module?}
 ;;;
-;;; Symbol S in Module M is interned if S occurs in 
+;;; Symbol S in Module M is interned if S occurs in
 ;;; of S in M has been set to some well-defined value.
 ;;;
 ;;; It is possible to intern a symbol in a module without providing
   ((if (symbol? key) hashq-remove! hash-remove!) ob key))
 
 ;; module-symbol-locally-interned? module symbol
-;; 
+;;
 ;; is a symbol interned (not neccessarily defined) locally in a given module
 ;; or its uses?  Interned symbols shadow inherited bindings even if
 ;; they are not themselves bound to a defined value.
   (not (not (module-obarray-get-handle (module-obarray m) v))))
 
 ;; module-symbol-interned? module symbol
-;; 
+;;
 ;; is a symbol interned (not neccessarily defined) anywhere in a given module
 ;; or its uses?  Interned symbols shadow inherited bindings even if
 ;; they are not themselves bound to a defined value.
 ;))
 
 ;; module-variable module symbol
-;; 
-;; like module-local-variable, except search the uses in the 
+;;
+;; like module-local-variable, except search the uses in the
 ;; case V is not found in M.
 ;;
 ;; NOTE: This function is superseded with C code (see modules.c)
 ;;;
 
 ;; module-symbol-binding module symbol opt-value
-;; 
+;;
 ;; return the binding of a variable specified by name within
 ;; a given module, signalling an error if the variable is unbound.
 ;; If the OPT-VALUE is passed, then instead of signalling an error,
 ;;
 (define (module-symbol-local-binding m v . opt-val)
   (let ((var (module-local-variable m v)))
-    (if var
+    (if (and var (variable-bound? var))
        (variable-ref var)
        (if (not (null? opt-val))
            (car opt-val)
            (error "Locally unbound variable." v)))))
 
 ;; module-symbol-binding module symbol opt-value
-;; 
+;;
 ;; return the binding of a variable specified by name within
 ;; a given module, signalling an error if the variable is unbound.
 ;; If the OPT-VALUE is passed, then instead of signalling an error,
 ;;
 (define (module-symbol-binding m v . opt-val)
   (let ((var (module-variable m v)))
-    (if var
+    (if (and var (variable-bound? var))
        (variable-ref var)
        (if (not (null? opt-val))
            (car opt-val)
 
 
 ;; module-make-local-var! module symbol
-;; 
+;;
 ;; ensure a variable for V in the local namespace of M.
 ;; If no variable was already there, then create a new and uninitialzied
 ;; variable.
       (and (module-binder m)
           ((module-binder m) m v #t))
       (begin
-       (let ((answer (make-undefined-variable v)))
+       (let ((answer (make-undefined-variable)))
          (module-obarray-set! (module-obarray m) v answer)
          (module-modified m)
          answer))))
 
+;; module-ensure-local-variable! module symbol
+;;
+;; Ensure that there is a local variable in MODULE for SYMBOL.  If
+;; there is no binding for SYMBOL, create a new uninitialized
+;; variable.  Return the local variable.
+;;
+(define (module-ensure-local-variable! module symbol)
+  (or (module-local-variable module symbol)
+      (let ((var (make-undefined-variable)))
+       (module-add! module symbol var)
+       var)))
+
 ;; module-add! module symbol var
-;; 
+;;
 ;; ensure a particular variable for V in the local namespace of M.
 ;;
 (define (module-add! m v var)
   (module-obarray-set! (module-obarray m) v var)
   (module-modified m))
 
-;; module-remove! 
-;; 
+;; module-remove!
+;;
 ;; make sure that a symbol is undefined in the local namespace of M.
 ;;
 (define (module-remove! m v)
-  (module-obarray-remove!  (module-obarray m) v)
+  (module-obarray-remove! (module-obarray m) v)
   (module-modified m))
 
 (define (module-clear! m)
-  (vector-fill! (module-obarray m) '())
+  (hash-clear! (module-obarray m))
   (module-modified m))
 
 ;; MODULE-FOR-EACH -- exported
-;; 
+;;
 ;; Call PROC on each symbol in MODULE, with arguments of (SYMBOL VARIABLE).
 ;;
 (define (module-for-each proc module)
-  (let ((obarray (module-obarray module)))
-    (do ((index 0 (+ index 1))
-        (end (vector-length obarray)))
-       ((= index end))
-      (for-each
-       (lambda (bucket)
-        (proc (car bucket) (cdr bucket)))
-       (vector-ref obarray index)))))
-
+  (hash-for-each proc (module-obarray module)))
 
 (define (module-map proc module)
-  (let* ((obarray (module-obarray module))
-        (end (vector-length obarray)))
-
-    (let loop ((i 0)
-              (answer '()))
-      (if (= i end)
-         answer
-         (loop (+ 1 i)
-               (append!
-                (map (lambda (bucket)
-                       (proc (car bucket) (cdr bucket)))
-                     (vector-ref obarray i))
-                answer))))))
+  (hash-map proc (module-obarray module)))
+
 \f
 
 ;;; {Low Level Bootstrapping}
 ;;;
 
-;; make-root-module 
+;; make-root-module
 
-;; A root module uses the symhash table (the system's privileged 
-;; obarray).  Being inside a root module is like using SCM without
-;; any module system.
+;; A root module uses the pre-modules-obarray as its obarray.  This
+;; special obarray accumulates all bindings that have been established
+;; before the module system is fully booted.
 ;;
-
-
-(define (root-module-closure m s define?)
-  (let ((bi (builtin-variable s)))
-    (and bi
-        (or define? (variable-bound? bi))
-        (begin
-          (module-add! m s bi)
-          bi))))
+;; (The obarray continues to be used by code that has been closed over
+;;  before the module system has been booted.)
 
 (define (make-root-module)
-  (make-module 1019 '() root-module-closure))
+  (let ((m (make-module 0)))
+    (set-module-obarray! m (%get-pre-modules-obarray))
+    m))
 
+;; make-scm-module
 
-;; make-scm-module 
-
-;; An scm module is a module into which the lazy binder copies
-;; variable bindings from the system symhash table.  The mapping is
-;; one way only; newly introduced bindings in an scm module are not
-;; copied back into the system symhash table (and can be used to override
-;; bindings from the symhash table).
-;;
-
-(define (scm-module-closure m s define?)
-  (let ((bi (builtin-variable s)))
-    (and bi
-        (variable-bound? bi)
-        (begin
-          (module-add! m s bi)
-          bi))))
+;; The root interface is a module that uses the same obarray as the
+;; root module.  It does not allow new definitions, tho.
 
 (define (make-scm-module)
-  (make-module 1019 '() scm-module-closure))
+  (let ((m (make-module 0)))
+    (set-module-obarray! m (%get-pre-modules-obarray))
+    (set-module-eval-closure! m (standard-interface-eval-closure m))
+    m))
 
 
-
-;; the-module
-;;
-;; NOTE: This binding is used in libguile/modules.c.
-;;
-(define the-module (make-fluid))
-
-;; scm:eval-transformer
-;;
-;;(define scm:eval-transformer (make-fluid)) ; initialized in eval.c.
-
-;; set-current-module module
-;;
-;; set the current module as viewed by the normalizer.
-;;
-;; NOTE: This binding is used in libguile/modules.c.
-;;
-(define (set-current-module m)
-  (fluid-set! the-module m)
-  (if m
-      (begin
-       ;; *top-level-lookup-closure* is now deprecated
-       (fluid-set! *top-level-lookup-closure*
-                   (module-eval-closure (fluid-ref the-module)))
-       (fluid-set! scm:eval-transformer (module-transformer (fluid-ref the-module))))
-      (fluid-set! *top-level-lookup-closure* #f)))
-
-
-;; current-module
-;;
-;; return the current module as viewed by the normalizer.
-;;
-(define (current-module) (fluid-ref the-module))
 \f
 ;;; {Module-based Loading}
 ;;;
 ;; Returns the value of a variable called NAME in MODULE or any of its
 ;; used modules.  If there is no such variable, then if the optional third
 ;; argument DEFAULT is present, it is returned; otherwise an error is signaled.
-;; 
+;;
 (define (module-ref module name . rest)
   (let ((variable (module-variable module name)))
     (if (and variable (variable-bound? variable))
 ;;
 ;; Sets the variable called NAME in MODULE (or in a module that MODULE uses)
 ;; to VALUE; if there is no such variable, an error is signaled.
-;; 
+;;
 (define (module-set! module name value)
   (let ((variable (module-variable module name)))
     (if variable
 ;;
 ;; Sets the variable called NAME in MODULE to VALUE; if there is no such
 ;; variable, it is added first.
-;; 
+;;
 (define (module-define! module name value)
   (let ((variable (module-local-variable module name)))
     (if variable
        (begin
          (variable-set! variable value)
          (module-modified module))
-       (module-add! module name (make-variable value name)))))
+       (let ((variable (make-variable value)))
+         (module-add! module name variable)))))
 
 ;; MODULE-DEFINED? -- exported
 ;;
 ;; MODULE-USE! module interface
 ;;
 ;; Add INTERFACE to the list of interfaces used by MODULE.
-;; 
+;;
 (define (module-use! module interface)
   (set-module-uses! module
                    (cons interface (delq! interface (module-uses module))))
   (module-modified module))
 
+;; MODULE-USE-INTERFACES! module interfaces
+;;
+;; Same as MODULE-USE! but add multiple interfaces and check for duplicates
+;;
+(define (module-use-interfaces! module interfaces)
+  (let* ((duplicates-info (module-duplicates-info module))
+        (duplicates-handlers? (car duplicates-info))
+        (uses (module-uses module)))
+    ;; remove duplicates-interface
+    (set! uses (delq! (cdr duplicates-info) uses))
+    ;; remove interfaces to be added
+    (for-each (lambda (interface)
+               (set! uses (delq! interface uses)))
+             interfaces)
+    ;; add interfaces to use list
+    (set-module-uses! module uses)
+    (for-each (lambda (interface)
+               (and duplicates-handlers?
+                    ;; perform duplicate checking
+                    (process-duplicates module interface))
+               (set! uses (cons interface uses))
+               (set-module-uses! module uses))
+             interfaces)
+    ;; add duplicates interface
+    (if (cdr duplicates-info)
+       (set-module-uses! module (cons (cdr duplicates-info) uses)))
+    (module-modified module)))
+
 \f
 ;;; {Recursive Namespaces}
 ;;;
 ;;; modules.
 ;;;
 ;;;            (nested-ref some-root-module '(foo bar baz))
-;;;            => <value of a variable named baz in the module bound to bar in 
+;;;            => <value of a variable named baz in the module bound to bar in
 ;;;                the module bound to foo in some-root-module>
 ;;;
 ;;;
   (module-ref m '%module-public-interface #f))
 (define (set-module-public-interface! m i)
   (module-define! m '%module-public-interface i))
+(define (module-duplicates-info m)
+  (or (module-ref m '%module-duplicates-info #f) (cons #f #f)))
+(define (set-module-duplicates-info! m i)
+  (module-define! m '%module-duplicates-info i))
 (define (set-system-module! m s)
   (set-procedure-property! (module-eval-closure m) 'system-module s))
 (define the-root-module (make-root-module))
 (define the-scm-module (make-scm-module))
 (set-module-public-interface! the-root-module the-scm-module)
+(set-module-duplicates-info! the-root-module (cons #f #f))
 (set-module-name! the-root-module '(guile))
 (set-module-name! the-scm-module '(guile))
 (set-module-kind! the-scm-module 'interface)
 (for-each set-system-module! (list the-root-module the-scm-module) '(#t #t))
 
-(set-current-module the-root-module)
-
-(define app (make-module 31))
-(local-define '(app modules) (make-module 31))
-(local-define '(app modules guile) the-root-module)
-
-;; (define-special-value '(app modules new-ws) (lambda () (make-scm-module)))
+;; NOTE: This binding is used in libguile/modules.c.
+;;
+(define (make-modules-in module name)
+  (if (null? name)
+      module
+      (cond
+       ((module-ref module (car name) #f)
+       => (lambda (m) (make-modules-in m (cdr name))))
+       (else   (let ((m (make-module 31)))
+                 (set-module-kind! m 'directory)
+                 (set-module-name! m (append (or (module-name module)
+                                                 '())
+                                             (list (car name))))
+                 (module-define! module (car name) m)
+                 (make-modules-in m (cdr name)))))))
 
-(define (try-load-module name)
-  (or (try-module-linked name)
-      (try-module-autoload name)
-      (try-module-dynamic-link name)))
+(define (beautify-user-module! module)
+  (let ((interface (module-public-interface module)))
+    (if (or (not interface)
+           (eq? interface module))
+       (let ((interface (make-module 31)))
+         (set-module-name! interface (module-name module))
+         (set-module-kind! interface 'interface)
+         (set-module-public-interface! module interface)
+         (set-module-duplicates-info! module (cons #f #f)))))
+  (if (and (not (memq the-scm-module (module-uses module)))
+          (not (eq? module the-root-module)))
+      (set-module-uses! module
+                       (append (module-uses module) (list the-scm-module)))))
 
 ;; NOTE: This binding is used in libguile/modules.c.
 ;;
       (if already
          ;; The module already exists...
          (if (and (or (null? maybe-autoload) (car maybe-autoload))
-                  (not (module-ref already '%module-public-interface #f)))
+                  (not (module-public-interface already)))
              ;; ...but we are told to load and it doesn't contain source, so
              (begin
                (try-load-module name)
                (try-load-module name))
            ;; Get/create it.
            (make-modules-in (current-module) full-name))))))
-           
-(define (beautify-user-module! module)
-  (let ((interface (module-public-interface module)))
-    (if (or (not interface)
-           (eq? interface module))
-       (let ((interface (make-module 31)))
-         (set-module-name! interface (module-name module))
-         (set-module-kind! interface 'interface)
-         (set-module-public-interface! module interface))))
-  (if (and (not (memq the-scm-module (module-uses module)))
-          (not (eq? module the-root-module)))
-      (set-module-uses! module (append (module-uses module) (list the-scm-module)))))
+
+;; Cheat.  These bindings are needed by modules.c, but we don't want
+;; to move their real definition here because that would be unnatural.
+;;
+(define try-module-autoload #f)
+(define process-define-module #f)
+(define process-use-modules #f)
+(define module-export! #f)
+
+;; This boots the module system.  All bindings needed by modules.c
+;; must have been defined by now.
+;;
+(set-current-module the-root-module)
+
+(define app (make-module 31))
+(local-define '(app modules) (make-module 31))
+(local-define '(app modules guile) the-root-module)
+
+;; (define-special-value '(app modules new-ws) (lambda () (make-scm-module)))
+
+(define (try-load-module name)
+  (try-module-autoload name))
 
 (define (purify-module! module)
   "Removes bindings in MODULE which are inherited from the (guile) module."
             (eq? (car (last-pair use-list)) the-scm-module))
        (set-module-uses! module (reverse (cdr (reverse use-list)))))))
 
-;; NOTE: This binding is used in libguile/modules.c.
+;; Return a module that is an interface to the module designated by
+;; NAME.
 ;;
-(define (make-modules-in module name)
-  (if (null? name)
-      module
-      (cond
-       ((module-ref module (car name) #f)
-       => (lambda (m) (make-modules-in m (cdr name))))
-       (else   (let ((m (make-module 31)))
-                 (set-module-kind! m 'directory)
-                 (set-module-name! m (append (or (module-name module)
-                                                 '())
-                                             (list (car name))))
-                 (module-define! module (car name) m)
-                 (make-modules-in m (cdr name)))))))
-
-(define (resolve-interface name)
-  (let ((module (resolve-module name)))
-    (and module (module-public-interface module))))
-
+;; `resolve-interface' takes two keyword arguments:
+;;
+;;   #:select SELECTION
+;;
+;; SELECTION is a list of binding-specs to be imported; A binding-spec
+;; is either a symbol or a pair of symbols (ORIG . SEEN), where ORIG
+;; is the name in the used module and SEEN is the name in the using
+;; module.  Note that SEEN is also passed through RENAMER, below.  The
+;; default is to select all bindings.  If you specify no selection but
+;; a renamer, only the bindings that already exist in the used module
+;; are made available in the interface.  Bindings that are added later
+;; are not picked up.
+;;
+;;   #:renamer RENAMER
+;;
+;; RENAMER is a procedure that takes a symbol and returns its new
+;; name.  The default is to not perform any renaming.
+;;
+;; Signal "no code for module" error if module name is not resolvable
+;; or its public interface is not available.  Signal "no binding"
+;; error if selected binding does not exist in the used module.
+;;
+(define (resolve-interface name . args)
 
-(define %autoloader-developer-mode #t)
+  (define (get-keyword-arg args kw def)
+    (cond ((memq kw args)
+          => (lambda (kw-arg)
+               (if (null? (cdr kw-arg))
+                   (error "keyword without value: " kw))
+               (cadr kw-arg)))
+         (else
+          def)))
+
+  (let* ((select (get-keyword-arg args #:select #f))
+        (renamer (get-keyword-arg args #:renamer identity))
+         (module (resolve-module name))
+         (public-i (and module (module-public-interface module))))
+    (and (or (not module) (not public-i))
+         (error "no code for module" name))
+    (if (and (not select) (eq? renamer identity))
+        public-i
+        (let ((selection (or select (module-map (lambda (sym var) sym)
+                                               public-i)))
+              (custom-i (make-module 31)))
+          (set-module-kind! custom-i 'interface)
+         ;; XXX - should use a lazy binder so that changes to the
+         ;; used module are picked up automatically.
+          (for-each (lambda (bspec)
+                      (let* ((direct? (symbol? bspec))
+                             (orig (if direct? bspec (car bspec)))
+                             (seen (if direct? bspec (cdr bspec))))
+                        (module-add! custom-i (renamer seen)
+                                     (or (module-local-variable public-i orig)
+                                         (module-local-variable module orig)
+                                         (error
+                                          ;; fixme: format manually for now
+                                          (simple-format
+                                           #f "no binding `~A' in module ~A"
+                                           orig name))))))
+                    selection)
+          custom-i))))
+
+(define (symbol-prefix-proc prefix)
+  (lambda (symbol)
+    (symbol-append prefix symbol)))
+
+;; This function is called from "modules.c".  If you change it, be
+;; sure to update "modules.c" as well.
 
 (define (process-define-module args)
-  (let*  ((module-id (car args))
-         (module (resolve-module module-id #f))
-         (kws (cdr args)))
+  (let* ((module-id (car args))
+         (module (resolve-module module-id #f))
+         (kws (cdr args))
+         (unrecognized (lambda (arg)
+                         (error "unrecognized define-module argument" arg))))
     (beautify-user-module! module)
     (let loop ((kws kws)
               (reversed-interfaces '())
-              (exports '()))
+              (exports '())
+              (re-exports '()))
       (if (null? kws)
          (begin
-           (for-each (lambda (interface)
-                       (module-use! module interface))
-                     reversed-interfaces)
-           (module-export! module exports))
-         (let ((keyword (if (keyword? (car kws))
-                            (keyword->symbol (car kws))
-                            (and (symbol? (car kws))
-                                 (let ((s (symbol->string (car kws))))
-                                   (and (eq? (string-ref s 0) #\:)
-                                        (string->symbol (substring s 1))))))))
-           (case keyword
-             ((use-module use-syntax)
-              (if (not (pair? (cdr kws)))
-                  (error "unrecognized defmodule argument" kws))
-              (let* ((used-name (cadr kws))
-                     (used-module (resolve-module used-name)))
-                (if (not (module-ref used-module
-                                     '%module-public-interface
-                                     #f))
-                    (begin
-                      ((if %autoloader-developer-mode warn error)
-                       "no code for module" (module-name used-module))
-                      (beautify-user-module! used-module)))
-                (let ((interface (module-public-interface used-module)))
-                  (if (not interface)
-                      (error "missing interface for use-module"
-                             used-module))
-                  (if (eq? keyword 'use-syntax)
-                      (set-module-transformer!
-                       module
-                       (module-ref interface (car (last-pair used-name))
-                                   #f)))
-                  (loop (cddr kws)
-                        (cons interface reversed-interfaces)
-                        exports))))
-             ((autoload)
-              (if (not (and (pair? (cdr kws)) (pair? (cddr kws))))
-                  (error "unrecognized defmodule argument" kws))
-              (loop (cdddr kws)
-                    (cons (make-autoload-interface module
-                                                   (cadr kws)
-                                                   (caddr kws))
-                          reversed-interfaces)
-                    exports))
-             ((no-backtrace)
-              (set-system-module! module #t)
-              (loop (cdr kws) reversed-interfaces exports))
-             ((pure)
-              (purify-module! module)
-              (loop (cdr kws) reversed-interfaces exports))
-             ((export)
-              (if (not (pair? (cdr kws)))
-                  (error "unrecognized defmodule argument" kws))
+           (module-use-interfaces! module (reverse reversed-interfaces))
+           (module-export! module exports)
+           (module-re-export! module re-exports))
+         (case (car kws)
+           ((#:use-module #:use-syntax)
+            (or (pair? (cdr kws))
+                (unrecognized kws))
+            (let* ((interface-args (cadr kws))
+                   (interface (apply resolve-interface interface-args)))
+              (and (eq? (car kws) #:use-syntax)
+                   (or (symbol? (caar interface-args))
+                       (error "invalid module name for use-syntax"
+                              (car interface-args)))
+                   (set-module-transformer!
+                    module
+                    (module-ref interface
+                                (car (last-pair (car interface-args)))
+                                #f)))
               (loop (cddr kws)
-                    reversed-interfaces
-                    (append (cadr kws) exports)))
-             (else     
-              (error "unrecognized defmodule argument" kws))))))
-    (set-current-module module)
+                    (cons interface reversed-interfaces)
+                    exports
+                    re-exports)))
+           ((#:autoload)
+            (or (and (pair? (cdr kws)) (pair? (cddr kws)))
+                (unrecognized kws))
+            (loop (cdddr kws)
+                  (cons (make-autoload-interface module
+                                                 (cadr kws)
+                                                 (caddr kws))
+                        reversed-interfaces)
+                  exports
+                  re-exports))
+           ((#:no-backtrace)
+            (set-system-module! module #t)
+            (loop (cdr kws) reversed-interfaces exports re-exports))
+           ((#:pure)
+            (purify-module! module)
+            (loop (cdr kws) reversed-interfaces exports re-exports))
+           ((#:duplicates)
+            (if (not (pair? (cdr kws)))
+                (unrecognized kws))
+            (set-car! (module-duplicates-info module)
+                      (map (lambda (handler-name)
+                             (or (module-symbol-local-binding
+                                  duplicate-handlers handler-name #f)
+                                 (error "invalid duplicate handler name:"
+                                        handler-name)))
+                           (if (list? (cadr kws))
+                               (cadr kws)
+                               (list (cadr kws)))))
+            (loop (cddr kws) reversed-interfaces exports re-exports))
+           ((#:export #:export-syntax)
+            (or (pair? (cdr kws))
+                (unrecognized kws))
+            (loop (cddr kws)
+                  reversed-interfaces
+                  (append (cadr kws) exports)
+                  re-exports))
+           ((#:re-export #:re-export-syntax)
+            (or (pair? (cdr kws))
+                (unrecognized kws))
+            (loop (cddr kws)
+                  reversed-interfaces
+                  exports
+                  (append (cadr kws) re-exports)))
+           (else
+            (unrecognized kws)))))
+    (run-hook module-defined-hook module)
     module))
 
+;; `module-defined-hook' is a hook that is run whenever a new module
+;; is defined.  Its members are called with one argument, the new
+;; module.
+(define module-defined-hook (make-hook 1))
+
 ;;; {Autoload}
 
 (define (make-autoload-interface module name bindings)
     (module-constructor #() '() b #f #f name 'autoload
                        '() (make-weak-value-hash-table 31) 0)))
 
+;;; {Compiled module}
+
+(define load-compiled #f)
+
 \f
 ;;; {Autoloading modules}
 
 (define autoloads-in-progress '())
 
+;; This function is called from "modules.c".  If you change it, be
+;; sure to update "modules.c" as well.
+
 (define (try-module-autoload module-name)
   (let* ((reverse-name (reverse module-name))
         (name (symbol->string (car reverse-name)))
     (resolve-module dir-hint-module-name #f)
     (and (not (autoload-done-or-in-progress? dir-hint name))
         (let ((didit #f))
+          (define (load-file proc file)
+            (save-module-excursion (lambda () (proc file)))
+            (set! didit #t))
           (dynamic-wind
            (lambda () (autoload-in-progress! dir-hint name))
            (lambda ()
-             (let ((full (%search-load-path (in-vicinity dir-hint name))))
-               (if full
-                   (begin
-                     (save-module-excursion (lambda () (primitive-load full)))
-                     (set! didit #t)))))
+             (let ((file (in-vicinity dir-hint name)))
+               (cond ((and load-compiled
+                           (%search-load-path (string-append file ".go")))
+                      => (lambda (full)
+                           (load-file load-compiled full)))
+                     ((%search-load-path file)
+                      => (lambda (full)
+                           (load-file primitive-load full))))))
            (lambda () (set-autoloaded! dir-hint name didit)))
           didit))))
 
 \f
 ;;; Dynamic linking of modules
 
-;; Initializing a module that is written in C is a two step process.
-;; First the module's `module init' function is called.  This function
-;; is expected to call `scm_register_module_xxx' to register the `real
-;; init' function.  Later, when the module is referenced for the first
-;; time, this real init function is called in the right context.  See
-;; gtcltk-lib/gtcltk-module.c for an example.
-;;
-;; The code for the module can be in a regular shared library (so that
-;; the `module init' function will be called when libguile is
-;; initialized).  Or it can be dynamically linked.
-;;
-;; You can safely call `scm_register_module_xxx' before libguile
-;; itself is initialized.  You could call it from an C++ constructor
-;; of a static object, for example.
-;;
-;; To make your Guile extension into a dynamic linkable module, follow
-;; these easy steps:
-;;
-;; - Find a name for your module, like (ice-9 gtcltk)
-;; - Write a function with a name like
-;;
-;;     scm_init_ice_9_gtcltk_module
-;;
-;;   This is your `module init' function.  It should call
-;;   
-;;     scm_register_module_xxx ("ice-9 gtcltk", scm_init_gtcltk);
-;;   
-;;   "ice-9 gtcltk" is the C version of the module name. Slashes are
-;;   replaced by spaces, the rest is untouched. `scm_init_gtcltk' is
-;;   the real init function that executes the usual initializations
-;;   like making new smobs, etc.
-;;
-;; - Make a shared library with your code and a name like
-;;
-;;     ice-9/libgtcltk.so
-;;
-;;   and put it somewhere in %load-path.
-;;
-;; - Then you can simply write `:use-module (ice-9 gtcltk)' and it
-;;   will be linked automatically.
-;;
-;; This is all very experimental.
-
-(define (split-c-module-name str)
-  (let loop ((rev '())
-            (start 0)
-            (pos 0)
-            (end (string-length str)))
-    (cond
-     ((= pos end)
-      (reverse (cons (string->symbol (substring str start pos)) rev)))
-     ((eq? (string-ref str pos) #\space)
-      (loop (cons (string->symbol (substring str start pos)) rev)
-           (+ pos 1)
-           (+ pos 1)
-           end))
-     (else
-      (loop rev start (+ pos 1) end)))))
-
-(define (convert-c-registered-modules dynobj)
-  (let ((res (map (lambda (c)
-                   (list (split-c-module-name (car c)) (cdr c) dynobj))
-                 (c-registered-modules))))
-    (c-clear-registered-modules)
-    res))
-
-(define registered-modules '())
-
-(define (register-modules dynobj)
-  (set! registered-modules
-       (append! (convert-c-registered-modules dynobj)
-                registered-modules)))
-
-(define (warn-autoload-deprecation modname)
-  (display
-   ";;; Autoloading of compiled code modules is deprecated.\n"
-   (current-error-port))
-  (display
-   ";;; Write a Scheme file instead that uses `dynamic-link' directly.\n"
-   (current-error-port))
-  (format (current-error-port)
-         ";;; (You just tried to autoload module ~S.\n" modname))
-
-(define (init-dynamic-module modname)
-  ;; Register any linked modules which has been registered on the C level
-  (register-modules #f)
-  (or-map (lambda (modinfo)
-           (if (equal? (car modinfo) modname)
-               (begin
-                 (warn-autoload-deprecation modname)
-                 (set! registered-modules (delq! modinfo registered-modules))
-                 (let ((mod (resolve-module modname #f)))
-                   (save-module-excursion
-                    (lambda ()
-                      (set-current-module mod)
-                      (set-module-public-interface! mod mod)
-                      (dynamic-call (cadr modinfo) (caddr modinfo))
-                      ))
-                   #t))
-               #f))
-         registered-modules))
-
-(define (dynamic-maybe-call name dynobj)
-  (catch #t                            ; could use false-if-exception here
-        (lambda ()
-          (dynamic-call name dynobj))
-        (lambda args
-          #f)))
-
-(define (dynamic-maybe-link filename)
-  (catch #t                            ; could use false-if-exception here
-        (lambda ()
-          (dynamic-link filename))
-        (lambda args
-          #f)))
-
-(define (find-and-link-dynamic-module module-name)
-  (define (make-init-name mod-name)
-    (string-append "scm_init"
-                  (list->string (map (lambda (c)
-                                       (if (or (char-alphabetic? c)
-                                               (char-numeric? c))
-                                           c
-                                           #\_))
-                                     (string->list mod-name)))
-                  "_module"))
-
-  ;; Put the subdirectory for this module in the car of SUBDIR-AND-LIBNAME,
-  ;; and the `libname' (the name of the module prepended by `lib') in the cdr
-  ;; field.  For example, if MODULE-NAME is the list (inet tcp-ip udp), then
-  ;; SUBDIR-AND-LIBNAME will be the pair ("inet/tcp-ip" . "libudp").
-  (let ((subdir-and-libname
-        (let loop ((dirs "")
-                   (syms module-name))
-          (if (null? (cdr syms))
-              (cons dirs (string-append "lib" (symbol->string (car syms))))
-              (loop (string-append dirs (symbol->string (car syms)) "/")
-                    (cdr syms)))))
-       (init (make-init-name (apply string-append
-                                    (map (lambda (s)
-                                           (string-append "_"
-                                                          (symbol->string s)))
-                                         module-name)))))
-    (let ((subdir (car subdir-and-libname))
-         (libname (cdr subdir-and-libname)))
-
-      ;; Now look in each dir in %LOAD-PATH for `subdir/libfoo.la'.  If that
-      ;; file exists, fetch the dlname from that file and attempt to link
-      ;; against it.  If `subdir/libfoo.la' does not exist, or does not seem
-      ;; to name any shared library, look for `subdir/libfoo.so' instead and
-      ;; link against that.
-      (let check-dirs ((dir-list %load-path))
-       (if (null? dir-list)
-           #f
-           (let* ((dir (in-vicinity (car dir-list) subdir))
-                  (sharlib-full
-                   (or (try-using-libtool-name dir libname)
-                       (try-using-sharlib-name dir libname))))
-             (if (and sharlib-full (file-exists? sharlib-full))
-                 (link-dynamic-module sharlib-full init)
-                 (check-dirs (cdr dir-list)))))))))
-
-(define (try-using-libtool-name libdir libname)
-  (let ((libtool-filename (in-vicinity libdir
-                                      (string-append libname ".la"))))
-    (and (file-exists? libtool-filename)
-        libtool-filename)))
-                             
-(define (try-using-sharlib-name libdir libname)
-  (in-vicinity libdir (string-append libname ".so")))
-
-(define (link-dynamic-module filename initname)
-  ;; Register any linked modules which has been registered on the C level
-  (register-modules #f)
-  (let ((dynobj (dynamic-link filename)))
-    (dynamic-call initname dynobj)
-    (register-modules dynobj)))
-
-(define (try-module-linked module-name)
-  (init-dynamic-module module-name))
-
-(define (try-module-dynamic-link module-name)
-  (and (find-and-link-dynamic-module module-name)
-       (init-dynamic-module module-name)))
-
-
-
 (define autoloads-done '((guile . guile)))
 
 (define (autoload-done-or-in-progress? p m)
 
 
 
+\f
+;; {EVAL-CASE}
+;;
+;; (eval-case ((situation*) forms)* (else forms)?)
+;;
+;; Evaluate certain code based on the situation that eval-case is used
+;; in.  The only defined situation right now is `load-toplevel' which
+;; triggers for code evaluated at the top-level, for example from the
+;; REPL or when loading a file.
+
+(define eval-case
+  (procedure->memoizing-macro
+   (lambda (exp env)
+     (define (toplevel-env? env)
+       (or (not (pair? env)) (not (pair? (car env)))))
+     (define (syntax)
+       (error "syntax error in eval-case"))
+     (let loop ((clauses (cdr exp)))
+       (cond
+       ((null? clauses)
+        #f)
+       ((not (list? (car clauses)))
+        (syntax))
+       ((eq? 'else (caar clauses))
+        (or (null? (cdr clauses))
+            (syntax))
+        (cons 'begin (cdar clauses)))
+       ((not (list? (caar clauses)))
+        (syntax))
+       ((and (toplevel-env? env)
+             (memq 'load-toplevel (caar clauses)))
+        (cons 'begin (cdar clauses)))
+       (else
+        (loop (cdr clauses))))))))
 
 \f
 ;;; {Macros}
 
 ;;; {Defmacros}
 ;;;
-(define macro-table (make-weak-key-hash-table 523))
-(define xformer-table (make-weak-key-hash-table 523))
+(define macro-table (make-weak-key-hash-table 61))
+(define xformer-table (make-weak-key-hash-table 61))
 
 (define (defmacro? m)  (hashq-ref macro-table m))
 (define (assert-defmacro?! m) (hashq-set! macro-table m #t))
   (let ((defmacro-transformer
          (lambda (name parms . body)
            (let ((transformer `(lambda ,parms ,@body)))
-             `(define ,name
-                (,(lambda (transformer)
-                    (defmacro:transformer transformer))
-                 ,transformer))))))
+             `(eval-case
+               ((load-toplevel)
+                (define ,name (defmacro:transformer ,transformer)))
+               (else
+                (error "defmacro can only be used at the top level")))))))
     (defmacro:transformer defmacro-transformer)))
 
 (define defmacro:syntax-transformer
                                          (set! options (delq! flag options)))
                                        flags)
                              (,interface options)
-                             (,interface)))))
-
-        (make-set! (lambda (interface)
-                     `((name exp)
-                       (,'quasiquote
-                        (begin (,interface (append (,interface)
-                                                   (list '(,'unquote name)
-                                                         (,'unquote exp))))
-                               (,interface)))))))
-    (procedure->macro
+                             (,interface))))))
+    (procedure->memoizing-macro
      (lambda (exp env)
-       (cons 'begin
-            (let* ((option-group (cadr exp))
-                   (interface (car option-group)))
-              (append (map (lambda (name constructor)
-                             `(define ,name
-                                ,(constructor interface)))
-                           (cadr option-group)
-                           (list make-options
-                                 make-enable
-                                 make-disable))
-                      (map (lambda (name constructor)
-                             `(defmacro ,name
-                                ,@(constructor interface)))
-                           (caddr option-group)
-                           (list make-set!)))))))))
+       (let* ((option-group (cadr exp))
+             (interface (car option-group))
+             (options/enable/disable (cadr option-group)))
+        `(begin
+           (define ,(car options/enable/disable)
+             ,(make-options interface))
+           (define ,(cadr options/enable/disable)
+             ,(make-enable interface))
+           (define ,(caddr options/enable/disable)
+             ,(make-disable interface))
+           (defmacro ,(caaddr option-group) (opt val)
+             `(,,(car options/enable/disable)
+               (append (,,(car options/enable/disable))
+                       (list ',opt ,val))))))))))
 
 (define-option-interface
   (eval-options-interface
   (save-stack lazy-handler-dispatch)
   (apply throw key args))
 
-(define enter-frame-handler default-lazy-handler)
-(define apply-frame-handler default-lazy-handler)
-(define exit-frame-handler default-lazy-handler)
-
 (define (lazy-handler-dispatch key . args)
-  (case key
-    ((apply-frame)
-     (apply apply-frame-handler key args))
-    ((exit-frame)
-     (apply exit-frame-handler key args))
-    ((enter-frame)
-     (apply enter-frame-handler key args))
-    (else
-     (apply default-lazy-handler key args))))
+  (apply default-lazy-handler key args))
 
 (define abort-hook (make-hook))
 
   (let ((status #f)
        (interactive #t))
     (define (loop first)
-      (let ((next 
+      (let ((next
             (catch #t
 
                    (lambda ()
                      (lazy-catch #t
                                  (lambda ()
-                                   (dynamic-wind
-                                    (lambda () (unmask-signals))
+                                   (call-with-unblocked-asyncs
                                     (lambda ()
                                       (with-traps
                                        (lambda ()
                                          (first)
-                                      
+
                                          ;; This line is needed because mark
                                          ;; doesn't do closures quite right.
                                          ;; Unreferenced locals should be
                                          (set! first #f)
                                          (let loop ((v (thunk)))
                                            (loop (thunk)))
-                                         #f)))
-                                    (lambda () (mask-signals))))
+                                         #f)))))
 
                                  lazy-handler-dispatch))
-                   
+
                    (lambda (key . args)
                      (case key
                        ((quit)
                                  (apply bad-throw key args))))))))))
        (if next (loop next) status)))
     (set! set-batch-mode?! (lambda (arg)
-                            (cond (arg 
+                            (cond (arg
                                    (set! interactive #f)
                                    (restore-signals))
                                   (#t
                                    (error "sorry, not implemented")))))
     (set! batch-mode? (lambda () (not interactive)))
-    (loop (lambda () #t))))
+    (call-with-blocked-asyncs
+     (lambda () (loop (lambda () #t))))))
 
 ;;(define the-last-stack (make-fluid)) Defined by scm_init_backtrace ()
 (define before-signal-stack (make-fluid))
 ;;      (display "No backtrace available.\n")))
 
 (define (error-catching-repl r e p)
-  (error-catching-loop (lambda () (p (e (r))))))
+  (error-catching-loop
+   (lambda ()
+     (call-with-values (lambda () (e (r)))
+       (lambda the-values (for-each p the-values))))))
 
 (define (gc-run-time)
   (cdr (assq 'gc-time-taken (gc-stats))))
                                            (primitive-eval sourc))))
                      (run-hook after-eval-hook sourc)
                      val)))
-                     
+
 
           (-print (let ((maybe-print (lambda (result)
                                        (if (or scm-repl-print-unspecified
                                       -eval
                                       -print)))
       (-quit status))))
-  
+
 
 \f
 ;;; {IOTA functions: generating lists of numbers}
         (if (symbol? first)
             (car rest)
             `(lambda ,(cdr first) ,@rest))))
-    `(define ,name (defmacro:transformer ,transformer))))
+    `(eval-case
+      ((load-toplevel)
+       (define ,name (defmacro:transformer ,transformer)))
+      (else
+       (error "define-macro can only be used at the top level")))))
 
 
 (defmacro define-syntax-macro (first . rest)
         (if (symbol? first)
             (car rest)
             `(lambda ,(cdr first) ,@rest))))
-    `(define ,name (defmacro:syntax-transformer ,transformer))))
-
-;; EVAL-CASE
-;;
-;; (eval-case ((situation*) forms)* (else forms)?)
-;;
-;; Evaluate certain code based on the situation that eval-case is used
-;; in.  The only defined situation right now is `load-toplevel' which
-;; triggers for code evaluated at the top-level, for example from the
-;; REPL or when loading a file.
-(define eval-case
-  (procedure->memoizing-macro
-   (lambda (exp env)
-     (define (toplevel-env? env)
-       (or (not (pair? env)) (not (pair? (car env)))))
-     (define (syntax)
-       (error "syntax error in eval-case"))
-     (let loop ((clauses (cdr exp)))
-       (cond 
-       ((null? clauses)
-        #f)
-       ((not (list? (car clauses)))
-        (syntax))
-       ((eq? 'else (caar clauses))
-        (or (null? (cdr clauses))
-            (syntax))
-        (cons 'begin (cdar clauses)))
-       ((not (list? (caar clauses)))
-        (syntax))
-       ((and (toplevel-env? env)
-             (memq 'load-toplevel (caar clauses)))
-        (cons 'begin (cdar clauses)))
-       (else
-        (loop (cdr clauses))))))))
+    `(eval-case
+      ((load-toplevel)
+       (define ,name (defmacro:syntax-transformer ,transformer)))
+      (else
+       (error "define-syntax-macro can only be used at the top level")))))
 
 \f
 ;;; {Module System Macros}
 ;;;
 
+;; Return a list of expressions that evaluate to the appropriate
+;; arguments for resolve-interface according to SPEC.
+
+(define (compile-interface-spec spec)
+  (define (make-keyarg sym key quote?)
+    (cond ((or (memq sym spec)
+              (memq key spec))
+          => (lambda (rest)
+               (if quote?
+                   (list key (list 'quote (cadr rest)))
+                   (list key (cadr rest)))))
+         (else
+          '())))
+  (define (map-apply func list)
+    (map (lambda (args) (apply func args)) list))
+  (define keys
+    ;; sym     key      quote?
+    '((:select #:select #t)
+      (:renamer #:renamer #f)))
+  (if (not (pair? (car spec)))
+      `(',spec)
+      `(',(car spec)
+       ,@(apply append (map-apply make-keyarg keys)))))
+
+(define (keyword-like-symbol->keyword sym)
+  (symbol->keyword (string->symbol (substring (symbol->string sym) 1))))
+
+(define (compile-define-module-args args)
+  ;; Just quote everything except #:use-module and #:use-syntax.  We
+  ;; need to know about all arguments regardless since we want to turn
+  ;; symbols that look like keywords into real keywords, and the
+  ;; keyword args in a define-module form are not regular
+  ;; (i.e. no-backtrace doesn't take a value).
+  (let loop ((compiled-args `((quote ,(car args))))
+            (args (cdr args)))
+    (cond ((null? args)
+          (reverse! compiled-args))
+         ;; symbol in keyword position
+         ((symbol? (car args))
+          (loop compiled-args
+                (cons (keyword-like-symbol->keyword (car args)) (cdr args))))
+         ((memq (car args) '(#:no-backtrace #:pure))
+          (loop (cons (car args) compiled-args)
+                (cdr args)))
+         ((null? (cdr args))
+          (error "keyword without value:" (car args)))
+         ((memq (car args) '(#:use-module #:use-syntax))
+          (loop (cons* `(list ,@(compile-interface-spec (cadr args)))
+                       (car args)
+                       compiled-args)
+                (cddr args)))
+         ((eq? (car args) #:autoload)
+          (loop (cons* `(quote ,(caddr args))
+                       `(quote ,(cadr args))
+                       (car args)
+                       compiled-args)
+                (cdddr args)))
+         (else
+          (loop (cons* `(quote ,(cadr args))
+                       (car args)
+                       compiled-args)
+                (cddr args))))))
+
 (defmacro define-module args
   `(eval-case
     ((load-toplevel)
-     (process-define-module ',args))
+     (let ((m (process-define-module
+              (list ,@(compile-define-module-args args)))))
+       (set-current-module m)
+       m))
     (else
      (error "define-module can only be used at the top level"))))
 
-;; the guts of the use-modules macro.  add the interfaces of the named
-;; modules to the use-list of the current module, in order
-(define (process-use-modules module-names)
-  (for-each (lambda (module-name)
-             (let ((mod-iface (resolve-interface module-name)))
-               (or mod-iface
-                   (error "no such module" module-name))
-               (module-use! (current-module) mod-iface)))
-           (reverse module-names)))
+;; The guts of the use-modules macro.  Add the interfaces of the named
+;; modules to the use-list of the current module, in order.
+
+;; This function is called by "modules.c".  If you change it, be sure
+;; to change scm_c_use_module as well.
+
+(define (process-use-modules module-interface-args)
+  (module-use-interfaces! (current-module)
+                         (map (lambda (mif-args)
+                                (or (apply resolve-interface mif-args)
+                                    (error "no such module" mif-args)))
+                              module-interface-args)))
 
 (defmacro use-modules modules
   `(eval-case
     ((load-toplevel)
-     (process-use-modules ',modules))
+     (process-use-modules
+      (list ,@(map (lambda (m)
+                    `(list ,@(compile-interface-spec m)))
+                  modules)))
+     *unspecified*)
     (else
      (error "use-modules can only be used at the top level"))))
 
   `(eval-case
     ((load-toplevel)
      ,@(if (pair? spec)
-          `((process-use-modules ',(list spec))
+          `((process-use-modules (list
+                                  (list ,@(compile-interface-spec spec))))
             (set-module-transformer! (current-module)
                                      ,(car (last-pair spec))))
           `((set-module-transformer! (current-module) ,spec)))
-     (fluid-set! scm:eval-transformer (module-transformer (current-module))))
+     *unspecified*)
     (else
-     (error "use-modules can only be used at the top level"))))
+     (error "use-syntax can only be used at the top level"))))
 
+;; Dirk:FIXME:: This incorrect (according to R5RS) syntax needs to be changed
+;; as soon as guile supports hygienic macros.
 (define define-private define)
 
 (defmacro define-public args
    (#t
     (let ((name (defined-name (car args))))
       `(begin
-        (eval-case ((load-toplevel) (export ,name)))
-        (define-private ,@args))))))
+        (define-private ,@args)
+        (eval-case ((load-toplevel) (export ,name))))))))
 
 (defmacro defmacro-public args
   (define (syntax)
         (eval-case ((load-toplevel) (export ,name)))
         (defmacro ,@args))))))
 
+;; Export a local variable
+
+;; This function is called from "modules.c".  If you change it, be
+;; sure to update "modules.c" as well.
+
 (define (module-export! m names)
   (let ((public-i (module-public-interface m)))
     (for-each (lambda (name)
-               ;; Make sure there is a local variable:
-               (module-define! m name (module-ref m name #f))
-               ;; Make sure that local is exported:
-               (module-add! public-i name (module-variable m name)))
+               (let ((var (module-ensure-local-variable! m name)))
+                 (module-add! public-i name var)))
+             names)))
+
+;; Re-export a imported variable
+;;
+(define (module-re-export! m names)
+  (let ((public-i (module-public-interface m)))
+    (for-each (lambda (name)
+               (let ((var (module-variable m name)))
+                 (cond ((not var)
+                        (error "Undefined variable:" name))
+                       ((eq? var (module-local-variable m name))
+                        (error "re-exporting local variable:" name))
+                       (else
+                        (module-add! public-i name var)))))
              names)))
 
 (defmacro export names
     (else
      (error "export can only be used at the top level"))))
 
-(define export-syntax export)
+(defmacro re-export names
+  `(eval-case
+    ((load-toplevel)
+     (module-re-export! (current-module) ',names))
+    (else
+     (error "re-export can only be used at the top level"))))
+
+(defmacro export-syntax names
+  `(export ,@names))
 
+(defmacro re-export-syntax names
+  `(re-export ,@names))
 
 (define load load-module)
 
+\f
+;;; {Handling of duplicate imported bindings}
+;;;
+
+;; Duplicate handlers take the following arguments:
+;;
+;; module  importing module
+;; name           conflicting name
+;; int1           old interface where name occurs
+;; val1           value of binding in old interface
+;; int2           new interface where name occurs
+;; val2           value of binding in new interface
+;; var    previous resolution or #f
+;; val    value of previous resolution
+;;
+;; A duplicate handler can take three alternative actions:
+;;
+;; 1. return #f => leave responsibility to next handler
+;; 2. exit with an error
+;; 3. return a variable resolving the conflict
+;;
+
+(define duplicate-handlers
+  (let ((m (make-module 7)))
+    (set-module-name! m 'duplicate-handlers)
+    (set-module-kind! m 'interface)
+    (module-define! m 'check
+     (lambda (module name int1 val1 int2 val2 var val)
+       (scm-error 'misc-error
+                 #f
+                 "module ~A: duplicate binding ~A imported from ~A and ~A"
+                 (list (module-name module)
+                       name
+                       (module-name int1)
+                       (module-name int2))
+                 #f)))
+    (module-define! m 'first
+     (lambda (module name int1 val1 int2 val2 var val)
+       (or var (module-local-variable int1 name))))
+    (module-define! m 'last
+     (lambda (module name int1 val1 int2 val2 var val)
+       (module-local-variable int2 name)))
+    m))
+
+(define (make-duplicates-interface)
+  (let ((m (make-module)))
+    (set-module-kind! m 'interface)
+    (set-module-name! m 'duplicates)
+    m))
+
+(define (module-symbol-interface module sym)
+  (or-map (lambda (interface)
+           (module-search (lambda (interface sym)
+                            (and (module-local-variable interface sym)
+                                 interface))
+                          interface
+                          sym))
+         (module-uses module)))
+
+(define (process-duplicates module interface)
+  (let* ((duplicates-info (module-duplicates-info module))
+        (handlers (car duplicates-info))
+        (d-interface (cdr duplicates-info)))
+    (module-for-each
+     (lambda (name var)
+       (let ((prev-interface (module-symbol-interface module name)))
+        (if prev-interface
+            (begin
+              (if (not d-interface)
+                  (begin
+                    (set! d-interface (make-duplicates-interface))
+                    (set-cdr! duplicates-info d-interface)))
+              (let* ((var (module-local-variable d-interface name))
+                     (val (and var (variable-bound? var) (variable-ref var))))
+                (let loop ((handlers handlers))
+                  (cond ((null? handlers))
+                        (((car handlers)
+                          module
+                          name
+                          prev-interface
+                          (module-symbol-local-binding prev-interface name #f)
+                          interface
+                          (module-symbol-local-binding interface name #f)
+                          var
+                          val)
+                         =>
+                         (lambda (var)
+                           (module-add! d-interface name var)))
+                        (else
+                         (loop (cdr handlers))))))))))
+     interface)))
+
+\f
+
+;;; {`cond-expand' for SRFI-0 support.}
+;;;
+;;; This syntactic form expands into different commands or
+;;; definitions, depending on the features provided by the Scheme
+;;; implementation.
+;;;
+;;; Syntax:
+;;;
+;;; <cond-expand>
+;;;   --> (cond-expand <cond-expand-clause>+)
+;;;     | (cond-expand <cond-expand-clause>* (else <command-or-definition>))
+;;; <cond-expand-clause>
+;;;   --> (<feature-requirement> <command-or-definition>*)
+;;; <feature-requirement>
+;;;   --> <feature-identifier>
+;;;     | (and <feature-requirement>*)
+;;;     | (or <feature-requirement>*)
+;;;     | (not <feature-requirement>)
+;;; <feature-identifier>
+;;;   --> <a symbol which is the name or alias of a SRFI>
+;;;
+;;; Additionally, this implementation provides the
+;;; <feature-identifier>s `guile' and `r5rs', so that programs can
+;;; determine the implementation type and the supported standard.
+;;;
+;;; Currently, the following feature identifiers are supported:
+;;;
+;;;   guile r5rs srfi-0
+;;;
+;;; Remember to update the features list when adding more SRFIs.
+
+(define %cond-expand-features
+  ;; Adjust the above comment when changing this.
+  '(guile r5rs srfi-0))
+
+;; This table maps module public interfaces to the list of features.
+;;
+(define %cond-expand-table (make-hash-table 31))
+
+;; Add one or more features to the `cond-expand' feature list of the
+;; module `module'.
+;;
+(define (cond-expand-provide module features)
+  (let ((mod (module-public-interface module)))
+    (and mod
+        (hashq-set! %cond-expand-table mod
+                    (append (hashq-ref %cond-expand-table mod '())
+                            features)))))
+
+(define cond-expand
+  (procedure->memoizing-macro
+   (lambda (exp env)
+     (let ((clauses (cdr exp))
+          (syntax-error (lambda (cl)
+                          (error "invalid clause in `cond-expand'" cl))))
+       (letrec
+          ((test-clause
+            (lambda (clause)
+              (cond
+               ((symbol? clause)
+                (or (memq clause %cond-expand-features)
+                    (let lp ((uses (module-uses (env-module env))))
+                      (if (pair? uses)
+                          (or (memq clause
+                                    (hashq-ref %cond-expand-table
+                                               (car uses) '()))
+                              (lp (cdr uses)))
+                          #f))))
+               ((pair? clause)
+                (cond
+                 ((eq? 'and (car clause))
+                  (let lp ((l (cdr clause)))
+                    (cond ((null? l)
+                           #t)
+                          ((pair? l)
+                           (and (test-clause (car l)) (lp (cdr l))))
+                          (else
+                           (syntax-error clause)))))
+                 ((eq? 'or (car clause))
+                  (let lp ((l (cdr clause)))
+                    (cond ((null? l)
+                           #f)
+                          ((pair? l)
+                           (or (test-clause (car l)) (lp (cdr l))))
+                          (else
+                           (syntax-error clause)))))
+                 ((eq? 'not (car clause))
+                  (cond ((not (pair? (cdr clause)))
+                         (syntax-error clause))
+                        ((pair? (cddr clause))
+                         ((syntax-error clause))))
+                  (not (test-clause (cadr clause))))
+                 (else
+                  (syntax-error clause))))
+               (else
+                (syntax-error clause))))))
+        (let lp ((c clauses))
+          (cond
+           ((null? c)
+            (error "Unfulfilled `cond-expand'"))
+           ((not (pair? c))
+            (syntax-error c))
+           ((not (pair? (car c)))
+            (syntax-error (car c)))
+           ((test-clause (caar c))
+            `(begin ,@(cdar c)))
+           ((eq? (caar c) 'else)
+            (if (pair? (cdr c))
+                (syntax-error c))
+            `(begin ,@(cdar c)))
+           (else
+            (lp (cdr c))))))))))
+
+;; This procedure gets called from the startup code with a list of
+;; numbers, which are the numbers of the SRFIs to be loaded on startup.
+;;
+(define (use-srfis srfis)
+  (let lp ((s srfis))
+    (if (pair? s)
+        (let* ((srfi (string->symbol
+                      (string-append "srfi-" (number->string (car s)))))
+               (mod-i (resolve-interface (list 'srfi srfi))))
+          (module-use! (current-module) mod-i)
+          (lp (cdr s))))))
 
 \f
 
 ;;; {Load emacs interface support if emacs option is given.}
 
 (define (named-module-use! user usee)
-  (module-use! (resolve-module user) (resolve-module usee)))
+  (module-use! (resolve-module user) (resolve-interface usee)))
 
 (define (load-emacs-interface)
-  (if (memq 'debug-extensions *features*)
-      (debug-enable 'backtrace))
+  (and (provided? 'debug-extensions)
+       (debug-enable 'backtrace))
   (named-module-use! '(guile-user) '(ice-9 emacs)))
 
 \f
       (lambda () (fluid-ref using-readline?))
       (lambda (v) (fluid-set! using-readline? v)))))
 
-(define (top-repl) 
-
-  ;; Load emacs interface support if emacs option is given.
-  (if (and (module-defined? the-root-module 'use-emacs-interface)
-          (module-ref the-root-module 'use-emacs-interface))
-      (load-emacs-interface))
-
-  ;; Place the user in the guile-user module.
-  (process-define-module 
-   '((guile-user)
-     :use-module (guile)    ;so that bindings will be checked here first
-     :use-module (ice-9 session)
-     :use-module (ice-9 debug)
-     :autoload (ice-9 debugger) (debug)))  ;load debugger on demand
-  (if (memq 'threads *features*)
-      (named-module-use! '(guile-user) '(ice-9 threads)))
-  (if (memq 'regex *features*)
-      (named-module-use! '(guile-user) '(ice-9 regex)))
-
-  (let ((old-handlers #f)
-       (signals (if (provided? 'posix)
-                    `((,SIGINT . "User interrupt")
-                      (,SIGFPE . "Arithmetic error")
-                      (,SIGBUS . "Bad memory access (bus error)")
-                      (,SIGSEGV .
-                                "Bad memory access (Segmentation violation)"))
-                    '())))
-
-    (dynamic-wind
-
-     ;; call at entry
-     (lambda ()
-       (let ((make-handler (lambda (msg)
-                            (lambda (sig)
-                              ;; Make a backup copy of the stack
-                              (fluid-set! before-signal-stack
-                                          (fluid-ref the-last-stack))
-                              (save-stack %deliver-signals)
-                              (scm-error 'signal
-                                         #f
-                                         msg
-                                         #f
-                                         (list sig))))))
-        (set! old-handlers
-              (map (lambda (sig-msg)
-                     (sigaction (car sig-msg)
-                                (make-handler (cdr sig-msg))))
-                   signals))))
-
-     ;; the protected thunk.
-     (lambda ()
-       (let ((status (scm-style-repl)))
-        (run-hook exit-hook)
-        status))
-
-     ;; call at exit.
-     (lambda ()
-       (map (lambda (sig-msg old-handler)
-             (if (not (car old-handler))
-                 ;; restore original C handler.
-                 (sigaction (car sig-msg) #f)
-                 ;; restore Scheme handler, SIG_IGN or SIG_DFL.
-                 (sigaction (car sig-msg)
-                            (car old-handler)
-                            (cdr old-handler))))
-           signals old-handlers)))))
+(define (top-repl)
+  (let ((guile-user-module (resolve-module '(guile-user))))
+
+    ;; Load emacs interface support if emacs option is given.
+    (if (and (module-defined? guile-user-module 'use-emacs-interface)
+            (module-ref guile-user-module 'use-emacs-interface))
+       (load-emacs-interface))
+
+    ;; Use some convenient modules (in reverse order)
+
+    (if (provided? 'regex)
+       (module-use! guile-user-module (resolve-interface '(ice-9 regex))))
+    (if (provided? 'threads)
+       (module-use! guile-user-module (resolve-interface '(ice-9 threads))))
+    ;; load debugger on demand
+    (module-use! guile-user-module
+                (make-autoload-interface guile-user-module
+                                         '(ice-9 debugger) '(debug)))
+    (module-use! guile-user-module (resolve-interface '(ice-9 session)))
+    (module-use! guile-user-module (resolve-interface '(ice-9 debug)))
+    ;; so that builtin bindings will be checked first
+    (module-use! guile-user-module (resolve-interface '(guile)))
+
+    (set-current-module guile-user-module)
+
+    (let ((old-handlers #f)
+         (signals (if (provided? 'posix)
+                      `((,SIGINT . "User interrupt")
+                        (,SIGFPE . "Arithmetic error")
+                        (,SIGBUS . "Bad memory access (bus error)")
+                        (,SIGSEGV
+                         . "Bad memory access (Segmentation violation)"))
+                      '())))
+
+      (dynamic-wind
+
+         ;; call at entry
+         (lambda ()
+           (let ((make-handler (lambda (msg)
+                                 (lambda (sig)
+                                   ;; Make a backup copy of the stack
+                                   (fluid-set! before-signal-stack
+                                               (fluid-ref the-last-stack))
+                                   (save-stack 2)
+                                   (scm-error 'signal
+                                              #f
+                                              msg
+                                              #f
+                                              (list sig))))))
+             (set! old-handlers
+                   (map (lambda (sig-msg)
+                          (sigaction (car sig-msg)
+                                     (make-handler (cdr sig-msg))))
+                        signals))))
+
+         ;; the protected thunk.
+         (lambda ()
+           (let ((status (scm-style-repl)))
+             (run-hook exit-hook)
+             status))
+
+         ;; call at exit.
+         (lambda ()
+           (map (lambda (sig-msg old-handler)
+                  (if (not (car old-handler))
+                      ;; restore original C handler.
+                      (sigaction (car sig-msg) #f)
+                      ;; restore Scheme handler, SIG_IGN or SIG_DFL.
+                      (sigaction (car sig-msg)
+                                 (car old-handler)
+                                 (cdr old-handler))))
+                signals old-handlers))))))
 
 (defmacro false-if-exception (expr)
   `(catch #t (lambda () ,expr)
 (define exit-hook (make-hook))
 
 \f
-(define-module (guile))
+(append! %load-path (list "."))
+
+;; Place the user in the guile-user module.
+;;
 
-(append! %load-path (cons "." '()))
+(define-module (guile-user))
 
+;;; boot-9.scm ends here