diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2020-03-20 17:24:31 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2020-03-20 17:24:31 -0400 |
commit | da6360b043fc8e97fc1927326d6025336bab20a3 (patch) | |
tree | 7ffe0076ba2f807b1a371c92a5d122cce1c13be3 /color.c | |
parent | 2acc028a7bc1bf0020da1e86ba8bc78ec0ae2eb2 (diff) | |
download | bfs-da6360b043fc8e97fc1927326d6025336bab20a3.tar.xz |
parse: Prettify some errors and warnings
Diffstat (limited to 'color.c')
-rw-r--r-- | color.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -371,7 +371,7 @@ struct colors *parse_colors(const char *ls_colors) { ret |= init_color(colors, "ec", NULL, &colors->endcode); ret |= init_color(colors, "cl", "\033[K", &colors->clear_to_eol); - ret |= init_color(colors, "bld", "01", &colors->bold); + ret |= init_color(colors, "bld", "01;39", &colors->bold); ret |= init_color(colors, "gry", "01;30", &colors->gray); ret |= init_color(colors, "red", "01;31", &colors->red); ret |= init_color(colors, "grn", "01;32", &colors->green); |