summaryrefslogtreecommitdiff
path: root/libguile/rdelim.c
diff options
context:
space:
mode:
authorMarius Vollmer <mvo@zagadka.de>2001-02-08 18:49:52 +0000
committerMarius Vollmer <mvo@zagadka.de>2001-02-08 18:49:52 +0000
commitaa767bc58fdad82fc83af75abc995a0b7c0c8ef2 (patch)
treed12c78680d7372d6cee83e404b453c6edf424eff /libguile/rdelim.c
parentfdfe6305a5f234694b213a851617645552ed853b (diff)
downloadguile-aa767bc58fdad82fc83af75abc995a0b7c0c8ef2.tar.gz
* modules.h (scm_selected_module, scm_current_module): Renamed
scm_selected_module to scm_current_module to synchronize Scheme and C names. (scm_select_module, scm_set_current_module): Likewise. Changed all uses.
Diffstat (limited to 'libguile/rdelim.c')
-rw-r--r--libguile/rdelim.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libguile/rdelim.c b/libguile/rdelim.c
index f08df3c92..20fe8150c 100644
--- a/libguile/rdelim.c
+++ b/libguile/rdelim.c
@@ -284,13 +284,13 @@ void
scm_init_rdelim (void)
{
SCM rdelim_module = scm_make_module (scm_read_0str ("(ice-9 rdelim)"));
- SCM old_module = scm_select_module (rdelim_module);
+ SCM old_module = scm_set_current_module (rdelim_module);
#ifndef SCM_MAGIC_SNARFER
#include "libguile/rdelim.x"
#endif
- scm_select_module (old_module);
+ scm_set_current_module (old_module);
#if DEBUG_DEPRECATED == 0
{
@@ -300,7 +300,7 @@ scm_init_rdelim (void)
scm_eval_string (scm_makfromstr (expr, (sizeof expr) - 1, 0));
}
- scm_select_module (old_module);
+ scm_set_current_module (old_module);
#endif
}