[bugfix] wrong external representation for syntax type

This commit is contained in:
Yuichi Nishiwaki 2014-01-10 16:22:36 +09:00
parent aabcbdad79
commit 9513ae6a7a
1 changed files with 1 additions and 1 deletions

View File

@ -102,7 +102,7 @@ write(pic_state *pic, pic_value obj)
printf("#<senv %p>", pic_ptr(obj));
break;
case PIC_TT_SYNTAX:
printf("#<senv %p>", pic_ptr(obj));
printf("#<syntax %p>", pic_ptr(obj));
break;
case PIC_TT_SC:
printf("#<sc %p: ", pic_ptr(obj));