From: Karel Zak Date: Tue, 10 Mar 2020 08:45:33 +0000 (+0100) Subject: lib/color-names: add "white" between human-readable X-Git-Tag: v2.36-rc1~188 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=53829df2e351ce5879071b05ee0f3afa7b012742;p=thirdparty%2Futil-linux.git lib/color-names: add "white" between human-readable Addresses: https://github.com/karelzak/util-linux/issues/979 Signed-off-by: Karel Zak --- diff --git a/lib/color-names.c b/lib/color-names.c index 55060060d6..9b1505e4b0 100644 --- a/lib/color-names.c +++ b/lib/color-names.c @@ -50,6 +50,7 @@ const char *color_sequence_from_colorname(const char *str) { "reset", UL_COLOR_RESET, }, { "reverse", UL_COLOR_REVERSE }, { "yellow", UL_COLOR_BOLD_YELLOW }, + { "white", UL_COLOR_WHITE } }; struct ul_color_name key = { .name = str }, *res;