1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-12 23:00:22 +02:00

* 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.
This commit is contained in:
Jim Blandy 1997-06-24 16:26:27 +00:00
parent 9e2310a80c
commit 8bb7330c9c
9 changed files with 15 additions and 15 deletions

View file

@ -1729,12 +1729,12 @@
;;; {#/app} ;;; {The (app) module}
;;; ;;;
;;; The root of conventionally named objects not directly in the top level. ;;; The root of conventionally named objects not directly in the top level.
;;; ;;;
;;; #/app/modules ;;; (app modules)
;;; #/app/modules/guile ;;; (app modules guile)
;;; ;;;
;;; The directory of all modules and the standard root module. ;;; 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 ;; To make your Guile extension into a dynamic linkable module, follow
;; these easy steps: ;; 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 ;; - Write a function with a name like
;; ;;
;; scm_init_ice_9_gtcltk_module ;; scm_init_ice_9_gtcltk_module
@ -1913,7 +1913,7 @@
;; ;;
;; and put it somewhere in %load-path. ;; 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. ;; will be linked automatically.
;; ;;
;; This is all very experimental. ;; This is all very experimental.

View file

@ -20,7 +20,7 @@
;;;; ;;;;
(define-module #/ice-9/debug) (define-module (ice-9 debug))

View file

@ -19,7 +19,7 @@
;;;; ;;;;
(define-module #/ice-9/hcons) (define-module (ice-9 hcons))
;;; {Eq? hash-consing} ;;; {Eq? hash-consing}

View file

@ -20,7 +20,7 @@
(define-module #/ice-9/lineio) (define-module (ice-9 lineio))
;;; {Line Buffering Input Ports} ;;; {Line Buffering Input Ports}

View file

@ -20,8 +20,8 @@
(define-module #/ice-9/mapping (define-module (ice-9 mapping)
:use-module #/ice-9/poe) :use-module (ice-9 poe))
(define-public mapping-hooks-type (make-record-type 'mapping-hooks '(get-handle (define-public mapping-hooks-type (make-record-type 'mapping-hooks '(get-handle
create-handle create-handle

View file

@ -19,8 +19,8 @@
;;;; ;;;;
(define-module #/ice-9/poe (define-module (ice-9 poe)
:use-module #/ice-9/hcons) :use-module (ice-9 hcons))

View file

@ -1,5 +1,5 @@
;;; installed-scm-file ;;; installed-scm-file
(define-module #/ice-9/slib) (define-module (ice-9 slib))

View file

@ -20,5 +20,5 @@
(define-module #/ice-9/tags) (define-module (ice-9 tags))

View file

@ -23,7 +23,7 @@
;;;; ;;;;
(define-module #/ice-9/threads) (define-module (ice-9 threads))