ecl_boot=1 is required before init_CLOS() so that clear_compiler_properties()

works.
This commit is contained in:
jjgarcia 2002-11-18 12:59:19 +00:00
parent 7489558f2b
commit 05950d2eb9

View file

@ -109,9 +109,11 @@ init_lisp(void)
#ifdef RUNTIME
SYM_VAL(@'*features*') = CONS(make_keyword("RUNTIME"), SYM_VAL(@'*features*'));
#endif
/* This has to come before init_LSP/CLOS, because we need
* clear_compiler_properties() to work in init_CLOS(). */
ecl_booted = 1;
lex_env = Cnil;
init_LSP();
init_CLOS();
ecl_booted = 1;
}