From 53829df2e351ce5879071b05ee0f3afa7b012742 Mon Sep 17 00:00:00 2001 From: Karel Zak Date: Tue, 10 Mar 2020 09:45:33 +0100 Subject: [PATCH] lib/color-names: add "white" between human-readable Addresses: https://github.com/karelzak/util-linux/issues/979 Signed-off-by: Karel Zak --- lib/color-names.c | 1 + 1 file changed, 1 insertion(+) 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; -- 2.47.3