]> git.ipfire.org Git - thirdparty/util-linux.git/commitdiff
setterm: update comments about -ulcolor/-hbcolor syntax
authorJakub Wilk <jwilk@jwilk.net>
Thu, 7 Mar 2019 21:07:37 +0000 (22:07 +0100)
committerJakub Wilk <jwilk@jwilk.net>
Thu, 7 Mar 2019 21:11:46 +0000 (22:11 +0100)
Signed-off-by: Jakub Wilk <jwilk@jwilk.net>
term-utils/setterm.c

index 4c29a462ed30b330cf7fe2aca5f2570c35bfcdae..d9a846ab0b01c432b5f70537c87e6f1010e54b37 100644 (file)
@@ -976,11 +976,11 @@ static void perform_sequence(struct setterm_control *ctl)
        if (ctl->opt_background)
                printf("\033[4%c%s", '0' + ctl->opt_ba_color, "m");
 
-       /* -ulcolor black|red|green|yellow|blue|magenta|cyan|white|default. */
+       /* -ulcolor [bright] black|red|green|yellow|blue|magenta|cyan|white. */
        if (ctl->opt_ulcolor && vc_only(ctl, "--ulcolor"))
                printf("\033[1;%d]", ctl->opt_ul_color);
 
-       /* -hbcolor black|red|green|yellow|blue|magenta|cyan|white|default. */
+       /* -hbcolor [bright] black|red|green|yellow|blue|magenta|cyan|white. */
        if (ctl->opt_hbcolor)
                printf("\033[2;%d]", ctl->opt_hb_color);