From 811727c704d1e2ce1c0de187c310f28fd648846a Mon Sep 17 00:00:00 2001 From: Gary Houston Date: Sun, 10 Jun 2001 20:42:31 +0000 Subject: [PATCH] * 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. --- libguile/rdelim.c | 12 ------------ 1 file changed, 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; }