1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-29 00:10:21 +02:00

* boot-9.scm: use the (ice-9 rdelim) module if

include-deprecated-features is true.
This commit is contained in:
Gary Houston 2001-06-10 20:44:45 +00:00
parent 811727c704
commit 6eb396fe09

View file

@ -3063,6 +3063,11 @@
;; Place the user in the guile-user module.
;;
(define-module (guile-user))
(if include-deprecated-features
;; automatic availability of this module is deprecated.
(use-modules (ice-9 rdelim)))
;;; boot-9.scm ends here