diff options
Diffstat (limited to 'libguile/read.c')
-rw-r--r-- | libguile/read.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libguile/read.c b/libguile/read.c index 97f770235..7db03417c 100644 --- a/libguile/read.c +++ b/libguile/read.c @@ -1740,8 +1740,7 @@ scm_init_read () { SCM read_hash_procs; - read_hash_procs = scm_make_fluid (); - scm_fluid_set_x (read_hash_procs, SCM_EOL); + read_hash_procs = scm_make_fluid_with_default (SCM_EOL); scm_i_read_hash_procedures = SCM_VARIABLE_LOC (scm_c_define ("%read-hash-procedures", read_hash_procs)); |