diff options
-rw-r--r-- | whichbas.c | 7 |
1 files changed, 2 insertions, 5 deletions
@@ -254,6 +254,8 @@ CALLBACK(handle_cmd) { } break; case 0x58: /* TRACE (optional + or -), EXTEND (BXE; no args) */ + /* partial: TRACE +/- detected, TRACE without arg can't be + told from EXTEND. */ if(nexttok == OP_PLUS || nexttok == OP_MINUS) { bas_type = BT_TURBO; print_result(); @@ -262,11 +264,6 @@ CALLBACK(handle_cmd) { as the regular one, but can't be entered in the editor. Assume no BXL program contains this token. */ remove_type(BT_BXL); - if(lineno < 32768) { - /* EXTEND can't show up in a program except maybe line 32768, e.g. - EXTEND:SAVE "D:BLAH". */ - remove_type(BT_BXE); - } } break; case 0x59: /* TEXT or PROCEDURE */ |