summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Blandy <jimb@red-bean.com>1997-06-24 16:26:27 +0000
committerJim Blandy <jimb@red-bean.com>1997-06-24 16:26:27 +0000
commit8bb7330c9c514ca4e07644975de8edff1ea91dc6 (patch)
treeeebbf273cc02319cf27ac8953ae2f6ead88d3d7f
parent9e2310a80c5e215c9bc6b58f1d03cdc2f2dacb74 (diff)
downloadguile-8bb7330c9c514ca4e07644975de8edff1ea91dc6.tar.gz
* boot-9.scm, debug.scm, hcons.scm, lineio.scm, mapping.scm,
poe.scm, slib.scm, tags.scm, threads.scm: Use normal list notation, instead of #/ notation.
-rw-r--r--ice-9/boot-9.scm10
-rw-r--r--ice-9/debug.scm2
-rw-r--r--ice-9/hcons.scm2
-rw-r--r--ice-9/lineio.scm2
-rw-r--r--ice-9/mapping.scm4
-rw-r--r--ice-9/poe.scm4
-rw-r--r--ice-9/slib.scm2
-rw-r--r--ice-9/tags.scm2
-rw-r--r--ice-9/threads.scm2
9 files changed, 15 insertions, 15 deletions
diff --git a/ice-9/boot-9.scm b/ice-9/boot-9.scm
index 88930a403..b595bbcf9 100644
--- a/ice-9/boot-9.scm
+++ b/ice-9/boot-9.scm
@@ -1729,12 +1729,12 @@
-;;; {#/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.
;;;
@@ -1893,7 +1893,7 @@
;; 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
@@ -1913,7 +1913,7 @@
;;
;; 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.
diff --git a/ice-9/debug.scm b/ice-9/debug.scm
index c8440c031..1fdc212b7 100644
--- a/ice-9/debug.scm
+++ b/ice-9/debug.scm
@@ -20,7 +20,7 @@
;;;;
-(define-module #/ice-9/debug)
+(define-module (ice-9 debug))
diff --git a/ice-9/hcons.scm b/ice-9/hcons.scm
index d40190d90..6c0e0ba50 100644
--- a/ice-9/hcons.scm
+++ b/ice-9/hcons.scm
@@ -19,7 +19,7 @@
;;;;
-(define-module #/ice-9/hcons)
+(define-module (ice-9 hcons))
;;; {Eq? hash-consing}
diff --git a/ice-9/lineio.scm b/ice-9/lineio.scm
index 768aaef71..fa851c02e 100644
--- a/ice-9/lineio.scm
+++ b/ice-9/lineio.scm
@@ -20,7 +20,7 @@
-(define-module #/ice-9/lineio)
+(define-module (ice-9 lineio))
;;; {Line Buffering Input Ports}
diff --git a/ice-9/mapping.scm b/ice-9/mapping.scm
index b4ce24a00..3610b87f8 100644
--- a/ice-9/mapping.scm
+++ b/ice-9/mapping.scm
@@ -20,8 +20,8 @@
-(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
diff --git a/ice-9/poe.scm b/ice-9/poe.scm
index 567d1bbc2..ccb8759ec 100644
--- a/ice-9/poe.scm
+++ b/ice-9/poe.scm
@@ -19,8 +19,8 @@
;;;;
-(define-module #/ice-9/poe
- :use-module #/ice-9/hcons)
+(define-module (ice-9 poe)
+ :use-module (ice-9 hcons))
diff --git a/ice-9/slib.scm b/ice-9/slib.scm
index 53828813c..3266de5e6 100644
--- a/ice-9/slib.scm
+++ b/ice-9/slib.scm
@@ -1,5 +1,5 @@
;;; installed-scm-file
-(define-module #/ice-9/slib)
+(define-module (ice-9 slib))
diff --git a/ice-9/tags.scm b/ice-9/tags.scm
index 34d861c54..edd0dc49a 100644
--- a/ice-9/tags.scm
+++ b/ice-9/tags.scm
@@ -20,5 +20,5 @@
-(define-module #/ice-9/tags)
+(define-module (ice-9 tags))
diff --git a/ice-9/threads.scm b/ice-9/threads.scm
index b50ee4856..cdc8eba30 100644
--- a/ice-9/threads.scm
+++ b/ice-9/threads.scm
@@ -23,7 +23,7 @@
;;;;
-(define-module #/ice-9/threads)
+(define-module (ice-9 threads))