diff options
-rw-r--r-- | listbas.c | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -415,6 +415,7 @@ void print_ata_chr(unsigned char c) { void print_mixed_case(const char *name) { char c; + if(!*name) return; if(*name == ' ') outchr(*name++); outchr(*name++); @@ -469,7 +470,11 @@ CALLBACK(print_lineno) { CALLBACK(print_cmd) { const char *name; - if(tok == CMD_ILET) return; + if(bas_type == B_APLUS) { + if(tok == 0x52) return; + } else { + if(tok == CMD_ILET) return; + } if(color) color_on(color_cmd); |