diff options
-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; |