diff options
author | B. Watson <urchlay@slackware.uk> | 2024-07-13 01:48:14 -0400 |
---|---|---|
committer | B. Watson <urchlay@slackware.uk> | 2024-07-13 01:48:14 -0400 |
commit | 17ee646ccd25daa83dfd363ccbe247a5b93be806 (patch) | |
tree | 3c6b6f3ab112d263598da0dcb61413062c25a5e3 | |
parent | 0c48d54030c785cdbee875fd42a09f4f761e63a8 (diff) | |
download | bw-atari8-tools-17ee646ccd25daa83dfd363ccbe247a5b93be806.tar.gz |
listbas: add -c to --help message.
-rw-r--r-- | listbas.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -91,7 +91,7 @@ void parse_color_scheme(const char *arg) { } void print_help(void) { - printf("Usage: %s [-a | -d | -m | -x] [-b] [-i] [-n] [-v] <inputfile>\n", self); + printf("Usage: %s [-a | -d | -m | -x] [-b] [-i] [-n] [-v] [-c *colors*] <inputfile>\n", self); printf(" -U: output ATASCII as Unicode/UTF-8 (this is the default).\n"); printf(" -a: output raw ATASCII.\n"); printf(" -d: use dots instead of Unicode/UTF-8.\n"); @@ -102,6 +102,7 @@ void print_help(void) { printf(" -C: enable color syntax highlighting (this is the default).\n"); printf(" -n: disable color syntax highlighting.\n"); printf(" -u: use underline for inverse video.\n"); + printf(" -c: use custom colors (see man page).\n"); printf(" -v: verbose.\n"); } |