summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarel Zak <kzak@redhat.com>2015-02-25 12:35:05 +0100
committerKarel Zak <kzak@redhat.com>2015-03-12 10:12:42 +0100
commit805f7b88e233b63493f4aacbe8529e7e3422984c (patch)
tree62818a53af05e44598ff44aa8aeea50a8d53473b
parentdecbd34d6fa69e0f47bcaef565b9305a4bf3f08b (diff)
downloadutil-linux-805f7b88e233b63493f4aacbe8529e7e3422984c.tar.gz
lib/colors: add USAGE_COLORS_DEFAULT
Signed-off-by: Karel Zak <kzak@redhat.com>
-rw-r--r--include/colors.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/include/colors.h b/include/colors.h
index 97efc486a..df6feb739 100644
--- a/include/colors.h
+++ b/include/colors.h
@@ -39,6 +39,7 @@
#define UL_COLOR_WHITE "\033[1;37m"
+
/* --color[=WHEN] */
enum colortmode {
UL_COLORMODE_AUTO = 0,
@@ -49,6 +50,12 @@ enum colortmode {
__UL_NCOLORMODES /* last */
};
+#ifdef USE_COLORS_BY_DEFAUL
+# define USAGE_COLORS_DEFAULT N_("colors enabled by default")
+#else
+# define USAGE_COLORS_DEFAULT N_("colors disabled by default")
+#endif
+
extern int colormode_from_string(const char *str);
extern int colormode_or_err(const char *str, const char *errmsg);