asoft-detoken: don't print trailing space on REM

this makes the output of detoken match input of token
This commit is contained in:
Vince Weaver 2017-04-23 23:46:18 -04:00
parent 3cfcf85a3a
commit 38994ef9a8
1 changed files with 3 additions and 1 deletions

View File

@ -97,11 +97,13 @@ int main(int argc, char **argv) {
offset++;
/* if > 0x80 it's a token */
if (ch1>=0x80) {
/* Leading space */
fputc(' ',stdout);
for(i=0;i<strlen(applesoft_tokens[ch1-0x80]);i++) {
fputc(applesoft_tokens[ch1-0x80][i],stdout);
}
fputc(' ',stdout);
/* Trailing space, but not if REM */
if ((ch1-0x80)!=0x32) fputc(' ',stdout);
}
/* otherwise it is an ascii char */
else {