diff options
Diffstat (limited to 'libguile/init.c')
-rw-r--r-- | libguile/init.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libguile/init.c b/libguile/init.c index ff37d9c0a..674510680 100644 --- a/libguile/init.c +++ b/libguile/init.c @@ -112,6 +112,7 @@ #include "libguile/properties.h" #include "libguile/ramap.h" #include "libguile/random.h" +#include "libguile/rdelim.h" #include "libguile/read.h" #include "libguile/scmsigs.h" #include "libguile/script.h" @@ -586,6 +587,11 @@ scm_init_guile_1 (SCM_STACKITEM *base) #endif scm_load_startup_files (); + + /* this is located here, not from a deep understanding of the + module system, but as a way of avoiding segv and other + undesirable side effects that arise from various alternatives. */ + scm_init_rdelim (); } /* Record here whether SCM_BOOT_GUILE_1 has already been called. This |