summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--man/color.map.52
-rw-r--r--pym/portage/output.py3
2 files changed, 4 insertions, 1 deletions
diff --git a/man/color.map.5 b/man/color.map.5
index 7a0f1b2ec..bf63bbaed 100644
--- a/man/color.map.5
+++ b/man/color.map.5
@@ -123,6 +123,8 @@ Defines color used for warnings.
.B Other attributes
.RS
.TP
+.B reset
+.TP
.B bold
.TP
.B faint
diff --git a/pym/portage/output.py b/pym/portage/output.py
index e390b8807..9f0b7950b 100644
--- a/pym/portage/output.py
+++ b/pym/portage/output.py
@@ -129,7 +129,8 @@ codes["bg_lightgray"] = esc_seq + "47m"
codes["bg_darkyellow"] = codes["bg_brown"]
-# Colors from /sbin/functions.sh
+# Colors from /etc/init.d/functions.sh
+codes["NORMAL"] = esc_seq + "0m"
codes["GOOD"] = codes["green"]
codes["WARN"] = codes["yellow"]
codes["BAD"] = codes["red"]