mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-12 14:50:19 +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
|
#endif
|
||||||
#include "ioext.h"
|
#include "ioext.h"
|
||||||
#include "keywords.h"
|
#include "keywords.h"
|
||||||
|
#ifdef GUILE_LANG
|
||||||
|
#include "lang.h"
|
||||||
|
#endif
|
||||||
#include "list.h"
|
#include "list.h"
|
||||||
#include "load.h"
|
#include "load.h"
|
||||||
#include "macros.h"
|
#include "macros.h"
|
||||||
|
@ -524,6 +527,9 @@ scm_boot_guile_1 (base, closure)
|
||||||
scm_init_load_path ();
|
scm_init_load_path ();
|
||||||
scm_init_standard_ports ();
|
scm_init_standard_ports ();
|
||||||
scm_init_dynamic_linking ();
|
scm_init_dynamic_linking ();
|
||||||
|
#ifdef GUILE_LANG
|
||||||
|
scm_init_lang ();
|
||||||
|
#endif
|
||||||
scm_init_script ();
|
scm_init_script ();
|
||||||
initialized = 1;
|
initialized = 1;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue