diff options
author | Gary Houston <ghouston@arglist.com> | 2001-06-10 20:42:31 +0000 |
---|---|---|
committer | Gary Houston <ghouston@arglist.com> | 2001-06-10 20:42:31 +0000 |
commit | 811727c704d1e2ce1c0de187c310f28fd648846a (patch) | |
tree | 164662977ba396174a3d395387701e4b1a19e903 /libguile | |
parent | 6a9003d3a4592c05e521489aaf1394a74b23974d (diff) | |
download | guile-811727c704d1e2ce1c0de187c310f28fd648846a.tar.gz |
* rdelim.c (scm_init_rdelim_builtins): don't try to activate the
(ice-9 rdelim) module in (guile) and (guile-user). it didn't
work reliably anymore. try it from boot-9.scm instead.
Diffstat (limited to 'libguile')
-rw-r--r-- | libguile/rdelim.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/libguile/rdelim.c b/libguile/rdelim.c index b8fde12e2..f7358ae9e 100644 --- a/libguile/rdelim.c +++ b/libguile/rdelim.c @@ -289,18 +289,6 @@ scm_init_rdelim_builtins (void) #include "libguile/rdelim.x" #endif -#if DEBUG_DEPRECATED == 0 - { - SCM old_module = scm_current_module (); - const char expr[] = "\ -(define-module (guile) :use-module (ice-9 rdelim))\ -(define-module (guile-user) :use-module (ice-9 rdelim))"; - - scm_eval_string (scm_makfromstr (expr, (sizeof expr) - 1, 0)); - scm_set_current_module (old_module); - } -#endif - return SCM_UNSPECIFIED; } |