diff options
author | Marius Vollmer <mvo@zagadka.de> | 2001-02-08 18:49:52 +0000 |
---|---|---|
committer | Marius Vollmer <mvo@zagadka.de> | 2001-02-08 18:49:52 +0000 |
commit | aa767bc58fdad82fc83af75abc995a0b7c0c8ef2 (patch) | |
tree | d12c78680d7372d6cee83e404b453c6edf424eff /libguile/eval.h | |
parent | fdfe6305a5f234694b213a851617645552ed853b (diff) | |
download | guile-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/eval.h')
-rw-r--r-- | libguile/eval.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/eval.h b/libguile/eval.h index 33a2f6f96..69aaec83d 100644 --- a/libguile/eval.h +++ b/libguile/eval.h @@ -125,7 +125,7 @@ extern SCM scm_eval_options_interface (SCM setting); /*fixme* This should probably be removed throught the code. */ #define SCM_TOP_LEVEL_LOOKUP_CLOSURE \ - SCM_MODULE_EVAL_CLOSURE (scm_selected_module ()) + SCM_MODULE_EVAL_CLOSURE (scm_current_module ()) #if SCM_DEBUG_DEPRECATED == 0 |