* boot-9.scm, debug.scm, hcons.scm, lineio.scm, mapping.scm,
authorJim Blandy <jimb@red-bean.com>
Tue, 24 Jun 1997 16:26:27 +0000 (16:26 +0000)
committerJim Blandy <jimb@red-bean.com>
Tue, 24 Jun 1997 16:26:27 +0000 (16:26 +0000)
poe.scm, slib.scm, tags.scm, threads.scm: Use normal list
notation, instead of #/ notation.

ice-9/boot-9.scm
ice-9/debug.scm
ice-9/hcons.scm
ice-9/lineio.scm
ice-9/mapping.scm
ice-9/poe.scm
ice-9/slib.scm
ice-9/tags.scm
ice-9/threads.scm

index 88930a4..b595bbc 100644 (file)
 
 
 \f
-;;; {#/app}
+;;; {The (app) module}
 ;;;
 ;;; The root of conventionally named objects not directly in the top level.
 ;;;
-;;; #/app/modules
-;;; #/app/modules/guile
+;;; (app modules)
+;;; (app modules guile)
 ;;;
 ;;; The directory of all modules and the standard root module.
 ;;;
 ;; To make your Guile extension into a dynamic linkable module, follow
 ;; these easy steps:
 ;;
-;; - Find a name for your module, like #/ice-9/gtcltk
+;; - Find a name for your module, like (ice-9 gtcltk)
 ;; - Write a function with a name like
 ;;
 ;;     scm_init_ice_9_gtcltk_module
 ;;
 ;;   and put it somewhere in %load-path.
 ;;
-;; - Then you can simply write `:use-module #/ice-9/gtcltk' and it
+;; - Then you can simply write `:use-module (ice-9 gtcltk)' and it
 ;;   will be linked automatically.
 ;;
 ;; This is all very experimental.
index c8440c0..1fdc212 100644 (file)
@@ -20,7 +20,7 @@
 ;;;;
 \f
 
-(define-module #/ice-9/debug)
+(define-module (ice-9 debug))
 
 \f
 
index d40190d..6c0e0ba 100644 (file)
@@ -19,7 +19,7 @@
 ;;;; 
 
 \f
-(define-module  #/ice-9/hcons)
+(define-module  (ice-9 hcons))
 
 \f
 ;;; {Eq? hash-consing}
index 768aaef..fa851c0 100644 (file)
@@ -20,7 +20,7 @@
 
 \f
 
-(define-module #/ice-9/lineio)
+(define-module (ice-9 lineio))
 
 \f
 ;;; {Line Buffering Input Ports}
index b4ce24a..3610b87 100644 (file)
@@ -20,8 +20,8 @@
 
 \f
 
-(define-module #/ice-9/mapping
-  :use-module #/ice-9/poe)
+(define-module (ice-9 mapping)
+  :use-module (ice-9 poe))
 
 (define-public mapping-hooks-type (make-record-type 'mapping-hooks '(get-handle
                                                                     create-handle
index 567d1bb..ccb8759 100644 (file)
@@ -19,8 +19,8 @@
 ;;;; 
 
 \f
-(define-module  #/ice-9/poe
-  :use-module #/ice-9/hcons)
+(define-module  (ice-9 poe)
+  :use-module (ice-9 hcons))
 
 \f
 
index 5382881..3266de5 100644 (file)
@@ -1,5 +1,5 @@
 ;;; installed-scm-file
-(define-module #/ice-9/slib)
+(define-module (ice-9 slib))
   
 \f
 
index 34d861c..edd0dc4 100644 (file)
@@ -20,5 +20,5 @@
 
 \f
 
-(define-module #/ice-9/tags)
+(define-module (ice-9 tags))
 
index b50ee48..cdc8eba 100644 (file)
@@ -23,7 +23,7 @@
 ;;;;
 \f
 
-(define-module #/ice-9/threads)
+(define-module (ice-9 threads))
 
 \f