From 17ee646ccd25daa83dfd363ccbe247a5b93be806 Mon Sep 17 00:00:00 2001 From: "B. Watson" Date: Sat, 13 Jul 2024 01:48:14 -0400 Subject: listbas: add -c to --help message. --- listbas.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/listbas.c b/listbas.c index def855d..515d264 100644 --- a/listbas.c +++ b/listbas.c @@ -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] \n", self); + printf("Usage: %s [-a | -d | -m | -x] [-b] [-i] [-n] [-v] [-c *colors*] \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"); } -- cgit v1.2.3