diff --git a/HISTORY b/HISTORY index f40f880..55f0a9d 100755 --- a/HISTORY +++ b/HISTORY @@ -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 diff --git a/MY-BASIC Quick Reference.pdf b/MY-BASIC Quick Reference.pdf index 97ccbeb..5df8271 100644 Binary files a/MY-BASIC Quick Reference.pdf and b/MY-BASIC Quick Reference.pdf differ diff --git a/core/my_basic.c b/core/my_basic.c index ff557f7..cb183f1 100755 --- a/core/my_basic.c +++ b/core/my_basic.c @@ -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: