From 2e81ade66aae36e198e5e4c0c871180553d441c5 Mon Sep 17 00:00:00 2001 From: Kurtis Rader Date: Fri, 11 Nov 2016 19:07:52 -0800 Subject: [PATCH] don't use `set_color reset` There was a discussion recently on Gitter about `set_color reset`. The result was @floam creating commit bd03c3fbc to change it to `set_color normal` in share/functions/vared.fish. This does the same for tests/test_util.fish. --- tests/test_util.fish | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_util.fish b/tests/test_util.fish index 22c478524..97af65129 100644 --- a/tests/test_util.fish +++ b/tests/test_util.fish @@ -109,7 +109,7 @@ function say -V suppress_color if begin; test -n "$suppress_color"; or set_color $color_flags $argv[1]; end printf '%s' $argv[2..-1] - test -z "$suppress_color"; and set_color reset + test -z "$suppress_color"; and set_color normal if test -z "$suppress_newline" echo end