do not include core syntaces in the default library environment

This commit is contained in:
Yuichi Nishiwaki 2013-12-07 20:47:55 -08:00
parent 7f5a4c34a3
commit 47dd186535
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@ pic_make_library(pic_state *pic, pic_value name)
struct pic_lib *lib;
lib = (struct pic_lib *)pic_obj_alloc(pic, sizeof(struct pic_lib), PIC_TT_LIB);
lib->senv = pic_core_syntactic_env(pic);
lib->senv = pic_minimal_syntactic_env(pic);
lib->exports = xh_new();
lib->name = name;