diff options
author | Andy Wingo <wingo@pobox.com> | 2008-09-02 09:33:25 -0700 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2008-09-07 22:27:19 +0200 |
commit | 80b5909ca8feae3bebfed8b44af906c2a7f0fa16 (patch) | |
tree | 8d7658957ff8754ecfba50a6c534ab6ef21126c4 /libguile/init.c | |
parent | 275e00329555ce572fe9a68f7692dbecc52d8b34 (diff) | |
download | guile-80b5909ca8feae3bebfed8b44af906c2a7f0fa16.tar.gz |
allow boot-9.go load if available
* libguile/init.c (scm_load_startup_files): Don't specify the .scm
suffix, so as to allow loading a boot-9.go if appropriate.
Diffstat (limited to 'libguile/init.c')
-rw-r--r-- | libguile/init.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/init.c b/libguile/init.c index cdd756894..dc4fbc73e 100644 --- a/libguile/init.c +++ b/libguile/init.c @@ -282,7 +282,7 @@ scm_load_startup_files () /* Load Ice-9. */ if (!scm_ice_9_already_loaded) { - scm_primitive_load_path (scm_from_locale_string ("ice-9/boot-9.scm")); + scm_primitive_load_path (scm_from_locale_string ("ice-9/boot-9")); /* Load the init.scm file. */ if (scm_is_true (init_path)) |