diff options
author | B. Watson <urchlay@slackware.uk> | 2025-03-13 17:08:50 -0400 |
---|---|---|
committer | B. Watson <urchlay@slackware.uk> | 2025-03-13 17:08:50 -0400 |
commit | e4501a71b6af985fbf61d52b953140d73839f832 (patch) | |
tree | bb1d5d8b887e1114ef40d9584e673ae565b3c773 /listamsb.c | |
parent | f89321bf3cbc3e27c918ce8c16b3fe54abf83d89 (diff) | |
download | bw-atari8-tools-e4501a71b6af985fbf61d52b953140d73839f832.tar.gz |
listamsb: warn if list mode options used with -U/-C/-D, including a8cat options.
Diffstat (limited to 'listamsb.c')
-rw-r--r-- | listamsb.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -896,7 +896,7 @@ void parse_args(int argc, char **argv) { } if((unlock_mode + crunch + decrunch) > 1) { - os_err("only one of -C, -D, -U may be used"); + os_err("only one of -C, -D, -L, -U may be used"); } if(keep_rems && !decrunch) { @@ -904,8 +904,8 @@ void parse_args(int argc, char **argv) { } if(unlock_mode || crunch || decrunch) { - if(!initial_eol || check_only || raw_output || ropt) { - warn("-a, -c, -n, -r options ignored with -U, -C, or -D"); + if(!initial_eol || check_only || raw_output || ropt || a8catopt) { + warn("-[acimnrstu] options ignored with -U, -C, or -D"); } } |