1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-11 06:20:23 +02:00

* init.c (scm_boot_guile_1): Added call to scm_init_lang ().

This commit is contained in:
Mikael Djurfeldt 1999-07-27 19:09:19 +00:00
parent 73b6434264
commit 397daa3dfc

View file

@ -76,6 +76,9 @@
#endif
#include "ioext.h"
#include "keywords.h"
#ifdef GUILE_LANG
#include "lang.h"
#endif
#include "list.h"
#include "load.h"
#include "macros.h"
@ -524,6 +527,9 @@ scm_boot_guile_1 (base, closure)
scm_init_load_path ();
scm_init_standard_ports ();
scm_init_dynamic_linking ();
#ifdef GUILE_LANG
scm_init_lang ();
#endif
scm_init_script ();
initialized = 1;
}