diff options
Diffstat (limited to 'listbas.c')
-rw-r--r-- | listbas.c | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -941,7 +941,12 @@ CALLBACK(print_op) { print_string(pos + 2, program[pos + 1]); return; case OP_EOL: - return; + /* in Integer BASIC, this token is TO */ + if(bas_type != B_INT) return; + break; + case 0x13: + /* in Integer BASIC, this is the real end-of-line token */ + if(bas_type == B_INT) return; default: break; } |