From c05071d3b5a1236035bf7fa8728e14b576d9e345 Mon Sep 17 00:00:00 2001 From: "B. Watson" Date: Wed, 10 Jul 2024 00:33:00 -0400 Subject: whichbas: commentary cosmetics. --- whichbas.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/whichbas.c b/whichbas.c index c6673e9..e33eabd 100644 --- a/whichbas.c +++ b/whichbas.c @@ -351,8 +351,8 @@ CALLBACK(handle_cmd) { case 0x50: /* EXEC (1 arg, *must* be variable) or PMGRAPHICS (1 num arg, may be const) */ /* PARTIAL: PMGRAPHICS VAR won't be detected. but this usage is rare. */ /* This check is actually redundant, because EXEC requires Turbo's - label type (high bits in var name table both set to 1), which we already - detected in check_variables(). */ + label type (high bits in var name table both set to 1), which we already + detected in check_variables(). */ if(!has_var_arg) { remove_type(BT_TURBO); } @@ -406,7 +406,7 @@ CALLBACK(handle_cmd) { from the Toolkit disk. It's followed by a byte ranging 0x10 to 0x15 that specifies which extended command, e.g. 0x5a 0x11 means EXIT, 0x5a 0x12 is PROCEDURE, 0x5a 0x13 is CALL. Although - these look BXE's extra commands, they aren't the same tokens, + these look like BXE's extra commands, they aren't the same tokens, and BXE will choke on them (RUN causes "Error- 33", LIST causes a lockup). */ if(nexttok >= 0x10 && nexttok <= 0x15) { -- cgit v1.2.3