diff options
author | B. Watson <urchlay@slackware.uk> | 2024-07-17 01:53:33 -0400 |
---|---|---|
committer | B. Watson <urchlay@slackware.uk> | 2024-07-17 01:53:33 -0400 |
commit | 7dfa933827366b8ca2f8d672a14e0122afd31659 (patch) | |
tree | 4e85523db39a4c2c84440b87d936328baf801878 | |
parent | 133e953589904d8fa81f291dc15ab73b925d1914 (diff) | |
download | bw-atari8-tools-7dfa933827366b8ca2f8d672a14e0122afd31659.tar.gz |
listbas: print ERROR- the same way BASIC/A+ does.
-rw-r--r-- | aplus_tokens.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/aplus_tokens.c b/aplus_tokens.c index 7073e1a..d685189 100644 --- a/aplus_tokens.c +++ b/aplus_tokens.c @@ -85,7 +85,7 @@ const char *aplus_cmds[] = { "SET", /* $50 */ "LVAR", /* $51 */ "", /* $52, silent LET */ - "ERROR-" /* $53 */ + "ERROR- " /* $53 */ }; const int aplus_cmd_size = sizeof(aplus_cmds); |