diff options
| -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");  } | 
