aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorB. Watson <urchlay@slackware.uk>2024-07-10 00:33:00 -0400
committerB. Watson <urchlay@slackware.uk>2024-07-10 00:33:00 -0400
commitc05071d3b5a1236035bf7fa8728e14b576d9e345 (patch)
tree3ef5c6d50f8d70790ebd2775e247d091849106c2
parent825281987942ffa7063662dde45d84cc49792a9b (diff)
downloadbw-atari8-tools-c05071d3b5a1236035bf7fa8728e14b576d9e345.tar.gz
whichbas: commentary cosmetics.
-rw-r--r--whichbas.c6
1 files 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) {