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:
parent
73b6434264
commit
397daa3dfc
1 changed files with 6 additions and 0 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue