add missing quote

This commit is contained in:
Yuichi Nishiwaki 2014-09-15 12:47:25 +09:00
parent 5d06801704
commit df7a4381d0
1 changed files with 1 additions and 1 deletions

View File

@ -338,7 +338,7 @@ write_core(struct writer_control *p, pic_value obj)
while (xh_next(&it)) {
xfprintf(file, " '");
write_core(p, xh_key(it.e, pic_value));
xfprintf(file, " ");
xfprintf(file, " '");
write_core(p, xh_val(it.e, pic_value));
}
xfprintf(file, ")");