1
0
mirror of https://github.com/dschmenk/PLASMA.git synced 2025-01-20 10:33:57 +00:00

Refill input on empty lines

This commit is contained in:
David Schmenk 2024-08-01 11:52:56 -07:00
parent 2c814d8829
commit 7936b189e1
2 changed files with 2 additions and 2 deletions

Binary file not shown.

View File

@ -558,9 +558,9 @@ export def parse_expr(evalptr, level, refill)#2 // return evalptr, exprptr
//
elemptr = NULL
when ^evalptr
is 0
is 0 // End of line
is ';' // Comment to end of line
if level
if !exprptr or level
evalptr = refill() // Refill input buffer
else
return evalptr, exprptr