aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/color.cpp
diff options
context:
space:
mode:
authorGravatar Kurtis Rader <krader@skepticism.us>2015-11-28 17:50:08 -0800
committerGravatar ridiculousfish <corydoras@ridiculousfish.com>2015-12-08 20:08:08 -0800
commitdfaefb97ffa2a1fabff5b790a869086cd6bae248 (patch)
tree69aa13e3f95e3f098faab4725527f3ea64795986 /src/color.cpp
parent0a0acc8a2e0b8c2ca0c0500123d586d629f99b16 (diff)
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).
Diffstat (limited to 'src/color.cpp')
-rw-r--r--src/color.cpp1
1 files changed, 0 insertions, 1 deletions
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}},