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: Make the root module use (ice-9 regex) if

available.  The dynamic linking facilities in boot-9.scm are
currently dependent upon regular expressions.  My change of
1998-07-14 removed (ice-9 regex) from the use-list of the root
module and thereby destroyed dynamic linking.
This commit is contained in:
Mikael Djurfeldt 1998-08-15 09:16:43 +00:00
parent 57d09442e7
commit 325f42e0de
2 changed files with 11 additions and 1 deletions

View file

@ -1,3 +1,11 @@
1998-08-15 Mikael Djurfeldt <mdj@barbara.nada.kth.se>
* boot-9.scm: Make the root module use (ice-9 regex) if
available. The dynamic linking facilities in boot-9.scm are
currently dependent upon regular expressions. My change of
1998-07-14 removed (ice-9 regex) from the use-list of the root
module and thereby destroyed dynamic linking.
1998-07-29 Jim Blandy <jimb@zwingli.cygnus.com>
* Makefile.in: Regenerated using the last public version of

View file

@ -2974,7 +2974,9 @@
;;; {Load regexp code if regexp primitives are available.}
(if (memq 'regex *features*)
(define-module (guile-user) :use-module (ice-9 regex)))
(begin
(define-module (guile) :use-module (ice-9 regex))
(define-module (guile-user) :use-module (ice-9 regex))))
(define-module (guile))