From ed37427f9eb0a6dd436bfd087bcffdf869f96158 Mon Sep 17 00:00:00 2001 From: Konrad Borowski Date: Wed, 30 Apr 2014 15:44:51 +0200 Subject: [PATCH] White is not identical to normal This makes white work properly in white terminals when used for `fish_color_*` variables. It's probably silly thing this small mistake breaks, to be honest, but it's still a bug. --- output.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/output.cpp b/output.cpp index 1f92c32ef..7f90df4bd 100644 --- a/output.cpp +++ b/output.cpp @@ -70,7 +70,7 @@ static const wchar_t *col[]= L"magenta", L"purple", L"cyan", - L"white" + L"white", L"normal" } ;