[bugfix] plus reader broken

This commit is contained in:
Yuichi Nishiwaki 2014-08-12 19:42:54 +09:00
parent 252debb489
commit 0dd7e85e72
1 changed files with 1 additions and 1 deletions

View File

@ -331,7 +331,7 @@ read_plus(pic_state *pic, struct pic_port *port, int c)
if (strcaseeq(pic_symbol_name(pic, pic_sym(sym)), "+nan.0")) {
return pic_float_value(NAN);
}
return read_symbol(pic, port, c);
return sym;
}
}