diff options
author | B. Watson <urchlay@slackware.uk> | 2025-03-25 01:02:01 -0400 |
---|---|---|
committer | B. Watson <urchlay@slackware.uk> | 2025-03-25 01:02:01 -0400 |
commit | eef9ca59afeb70200c82cc2290cb704ae71875c5 (patch) | |
tree | 9b3b5c75147da48c181094382661c182f7400f7d /listbas.c | |
parent | ffada20937251cc163f7b51b8b16f99f3d1dfe4b (diff) | |
download | bw-atari8-tools-eef9ca59afeb70200c82cc2290cb704ae71875c5.tar.gz |
listbas: mixed-case function names in OSS Integer BASIC.
Diffstat (limited to 'listbas.c')
-rw-r--r-- | listbas.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -956,7 +956,7 @@ CALLBACK(print_op) { fprintf(outfh, "(bad op token $%02x)", tok); badtok = 1; } else { - if(bas_type == B_BXL || bas_type == B_BXE) + if(bas_type == B_BXL || bas_type == B_BXE || bas_type == B_INT) print_mixed_case(name); else fprintf(outfh, "%s", name); |