diff options
Diffstat (limited to 'libguile/load.c')
-rw-r--r-- | libguile/load.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libguile/load.c b/libguile/load.c index 21008cbef..66e3cc40a 100644 --- a/libguile/load.c +++ b/libguile/load.c @@ -1043,8 +1043,7 @@ scm_init_load () scm_loc_fresh_auto_compile = SCM_VARIABLE_LOC (scm_c_define ("%fresh-auto-compile", SCM_BOOL_F)); - the_reader = scm_make_fluid (); - scm_fluid_set_x (the_reader, SCM_BOOL_F); + the_reader = scm_make_fluid_with_default (SCM_BOOL_F); scm_c_define("current-reader", the_reader); scm_c_define ("load-compiled", |