diff options
Diffstat (limited to 'listamsb.c')
-rw-r--r-- | listamsb.c | 13 |
1 files changed, 9 insertions, 4 deletions
@@ -92,6 +92,7 @@ int initial_eol = 1; /* -n */ int crunch = 0; /* -C, -D */ int decrunch = 0; /* -D */ int keep_rems = 0; /* -k */ +int color = 1; /* -m */ int locked = 0; int need_pclose = 0; @@ -795,12 +796,13 @@ void crunch_program(void) { void print_help(void) { printf("%s v" VERSION " - detokenize Atari Microsoft BASIC files\n", self); puts("By B. Watson <urchlay@slackware.uk>, released under the WTFPL"); - printf("Usage: %s [[-[acCDUnviutms] ...] [-r *start,end*]] <file> <outfile>\n", self); + printf("Usage: %s [[-[acCDUMnviutms] ...] [-r *start,end*]] <file> <outfile>\n", self); puts(" -a: raw ATASCII output"); puts(" -c: check only (no listing)"); puts(" -C: crunch program"); puts(" -D: decrunch program"); puts(" -U: lock or unlock program"); + puts(" -M: monochrome listing (no colorization)"); puts(" -n: no blank line at start of listing"); puts(" -v: verbosity"); puts(" -r: only list lines numbered from *start* to *end*"); @@ -866,7 +868,7 @@ void parse_args(int argc, char **argv) { } } - while( (opt = getopt(argc, argv, "DCnLUlr:cvaiutmshk")) != -1) { + while( (opt = getopt(argc, argv, "MDCnLUlr:cvaiutmshk")) != -1) { switch(opt) { case 'L': crunch = decrunch = unlock_mode = 0; break; case 'D': decrunch = 1; break; @@ -878,6 +880,7 @@ void parse_args(int argc, char **argv) { case 'a': raw_output = 1; break; case 'v': verbosity++ ; break; case 'n': initial_eol = 0; break; + case 'M': color = 0; break; case 'h': print_help(); exit(0); case 'r': get_line_range(optarg); ropt++; break; case 'i': @@ -904,8 +907,8 @@ void parse_args(int argc, char **argv) { } if(unlock_mode || crunch || decrunch) { - if(!initial_eol || check_only || raw_output || ropt || a8catopt) { - warn("-[acimnrstu] options ignored with -U, -C, or -D"); + if(!initial_eol || check_only || raw_output || ropt || a8catopt || !color) { + warn("-[acimMnrstu] options ignored with -U, -C, or -D"); } } @@ -959,6 +962,8 @@ void open_output() { } else { verbose(1, "A8CAT not set in environment, using 'a8cat'"); } + if(color) + strcat(pipe_command, " | colorize-amsb"); verbose(1, "using pipe for output: %s", pipe_command); outfile = popen(pipe_command, "w"); /* "wb" not allowed! */ /* we probably never see this error. popen() fails only if |