[workaround] load core syntaces initially

This commit is contained in:
Yuichi Nishiwaki 2013-12-07 07:14:35 -08:00
parent 0115ede4de
commit c989687564
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ pic_make_library(pic_state *pic, const char *name)
pic_value spec = lib_spec(pic, name);
lib = (struct pic_lib *)pic_obj_alloc(pic, sizeof(struct pic_lib), PIC_TT_LIB);
lib->senv = pic_minimal_syntactic_env(pic);
lib->senv = pic_core_syntactic_env(pic);
lib->exports = xh_new();
pic->lib_tbl = pic_acons(pic, spec, pic_obj_value(lib), pic->lib_tbl);