*fixed a parsing issue; *updated doc.

This commit is contained in:
paladin-t 2016-02-29 14:19:03 +08:00
parent 80edd2250a
commit 18665824de
3 changed files with 2 additions and 1 deletions

View File

@ -1,5 +1,5 @@
Feb. 29 2016
Added multiple line comment support
Added multi-line comment support
Fixed a crash bug with an invalid expression
Feb. 26 2016

Binary file not shown.

View File

@ -11564,6 +11564,7 @@ int mb_load_string(struct mb_interpreter_t* s, const char* l) {
++i;
++context->parsing_pos;
};
status = _parse_char(s, MB_EOS, context->parsing_pos, context->parsing_row, context->parsing_col);
status = _parse_char(s, EOF, context->parsing_pos, context->parsing_row, context->parsing_col);
_exit: