diff options
author | B. Watson <urchlay@slackware.uk> | 2025-03-09 14:27:44 -0400 |
---|---|---|
committer | B. Watson <urchlay@slackware.uk> | 2025-03-09 14:27:44 -0400 |
commit | ccde34734a3138760ba5c0b216c6f67292d9c003 (patch) | |
tree | dbfd6e5f6f3b715dad5239fa07399e598c26d598 | |
parent | 7885677f5f92584a0b2f25daa2fd9f313bdd1943 (diff) | |
download | bw-atari8-tools-ccde34734a3138760ba5c0b216c6f67292d9c003.tar.gz |
listbas: -D, tweakage.
-rw-r--r-- | listamsb.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -621,7 +621,7 @@ int need_space_between(int ext1, int ext2, unsigned char t1, unsigned char t2) { if(t2 == TOK_NOT) return 1; } - if(t1 >= 0x80) { + if(t1 >= 0x80 && isalnum(t1last)) { /* space not really required between OPEN/PRINT/CLOSE and #, but put one there for neatness. */ if(t2first == '#') return 1; |