mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-11 22:31:12 +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:
parent
9e2310a80c
commit
8bb7330c9c
9 changed files with 15 additions and 15 deletions
|
@ -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.
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
;;;;
|
||||
|
||||
|
||||
(define-module #/ice-9/debug)
|
||||
(define-module (ice-9 debug))
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
;;;;
|
||||
|
||||
|
||||
(define-module #/ice-9/hcons)
|
||||
(define-module (ice-9 hcons))
|
||||
|
||||
|
||||
;;; {Eq? hash-consing}
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
|
||||
|
||||
|
||||
(define-module #/ice-9/lineio)
|
||||
(define-module (ice-9 lineio))
|
||||
|
||||
|
||||
;;; {Line Buffering Input Ports}
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -19,8 +19,8 @@
|
|||
;;;;
|
||||
|
||||
|
||||
(define-module #/ice-9/poe
|
||||
:use-module #/ice-9/hcons)
|
||||
(define-module (ice-9 poe)
|
||||
:use-module (ice-9 hcons))
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
;;; installed-scm-file
|
||||
(define-module #/ice-9/slib)
|
||||
(define-module (ice-9 slib))
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -20,5 +20,5 @@
|
|||
|
||||
|
||||
|
||||
(define-module #/ice-9/tags)
|
||||
(define-module (ice-9 tags))
|
||||
|
||||
|
|
|
@ -23,7 +23,7 @@
|
|||
;;;;
|
||||
|
||||
|
||||
(define-module #/ice-9/threads)
|
||||
(define-module (ice-9 threads))
|
||||
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue