From: Jakub Wilk Date: Thu, 7 Mar 2019 21:07:37 +0000 (+0100) Subject: setterm: update comments about -ulcolor/-hbcolor syntax X-Git-Tag: v2.34-rc1~65^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=bec23f0bf280e45c7d8f9a71ca19d392bf0a83ab;p=thirdparty%2Futil-linux.git setterm: update comments about -ulcolor/-hbcolor syntax Signed-off-by: Jakub Wilk --- diff --git a/term-utils/setterm.c b/term-utils/setterm.c index 4c29a462ed..d9a846ab0b 100644 --- a/term-utils/setterm.c +++ b/term-utils/setterm.c @@ -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);