change default library in repl

This commit is contained in:
Yuichi Nishiwaki 2014-03-01 19:55:52 +09:00
parent 6ddaa0eda0
commit 6cf6c72f84
1 changed files with 2 additions and 2 deletions

View File

@ -118,8 +118,8 @@ pic_open(int argc, char *argv[], char **envp)
pic_init_core(pic);
/* set library */
pic_make_library(pic, pic_parse(pic, "user"));
pic_in_library(pic, pic_parse(pic, "user"));
pic_make_library(pic, pic_parse(pic, "(picrin user)"));
pic_in_library(pic, pic_parse(pic, "(picrin user)"));
return pic;
}