lib/colors: add USAGE_COLORS_DEFAULT

Signed-off-by: Karel Zak <kzak@redhat.com>
This commit is contained in:
Karel Zak 2015-02-25 12:35:05 +01:00
parent 81f55ab904
commit 62dc0ee83b
1 changed files with 7 additions and 0 deletions

View File

@ -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);