diff options
author | B. Watson <urchlay@slackware.uk> | 2025-03-09 14:58:43 -0400 |
---|---|---|
committer | B. Watson <urchlay@slackware.uk> | 2025-03-09 14:58:43 -0400 |
commit | bc2c32f78d83584ff05d360cdffb83adf2fdb927 (patch) | |
tree | 39bb9c964e5482140014dfb313406603607daf1c | |
parent | 02c0bf43d9852f6ec89b2139021f5ef390fbcdf4 (diff) | |
download | bw-atari8-tools-bc2c32f78d83584ff05d360cdffb83adf2fdb927.tar.gz |
listbas: -D, add a space to INPUT"STRING".
-rw-r--r-- | listamsb.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -679,6 +679,8 @@ int decrunch_line(void) { } else { if(byte == '"') { in_string = 1; + if(need_space_between(0, 0, prev, byte)) + code[codelen++] = ' '; } else if(is_comment_start(byte)) { in_comment = 1; } else if(byte == 0xff) { |