rename internal object

This commit is contained in:
Yuichi Nishiwaki 2015-01-19 14:09:25 +09:00
parent ffa27e4b11
commit 44ff702e60
1 changed files with 1 additions and 1 deletions

View File

@ -341,7 +341,7 @@ static pic_value
analyze_defer(analyze_state *state, pic_value name, pic_value formal, pic_value body) analyze_defer(analyze_state *state, pic_value name, pic_value formal, pic_value body)
{ {
pic_state *pic = state->pic; pic_state *pic = state->pic;
const pic_sym sNOWHERE = pic_intern_cstr(pic, " nowhere "); const pic_sym sNOWHERE = pic_intern_cstr(pic, "<<nowhere>>");
pic_value skel; pic_value skel;
skel = pic_list2(pic, pic_obj_value(state->sGREF), pic_obj_value(sNOWHERE)); skel = pic_list2(pic, pic_obj_value(state->sGREF), pic_obj_value(sNOWHERE));