aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--listamsb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/listamsb.c b/listamsb.c
index b8b4372..afd4f8a 100644
--- a/listamsb.c
+++ b/listamsb.c
@@ -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;