From dfaefb97ffa2a1fabff5b790a869086cd6bae248 Mon Sep 17 00:00:00 2001 From: Kurtis Rader Date: Sat, 28 Nov 2015 17:50:08 -0800 Subject: remove "normal" from the basic color name table The special token "normal" should not be in the basic sixteen color table because a) it is not a color, and b) it is special cased with the result of resetting the terminal colors (usually via a ANSI X3.64 CSI [0m sequence). --- src/color.cpp | 1 - 1 file changed, 1 deletion(-) (limited to 'src/color.cpp') diff --git a/src/color.cpp b/src/color.cpp index e19fb994..a194550b 100644 --- a/src/color.cpp +++ b/src/color.cpp @@ -172,7 +172,6 @@ static const named_color_t named_colors[] = {L"purple", 5, {0xFF, 0, 0xFF}}, {L"cyan", 6, {0, 0xFF, 0xFF}}, {L"grey", 7, {0xE5, 0xE5, 0xE5}}, - {L"normal", 7, {0xE5, 0xE5, 0XE5}}, {L"brgrey", 8, {0x55, 0x55, 0x55}}, {L"brred", 9, {0xFF, 0x55, 0x55}}, {L"brgreen", 10, {0x55, 0xFF, 0x55}}, -- cgit v1.2.3