From 36d542f84e4c27134a0ac2237b0dcd3e18a4d91d Mon Sep 17 00:00:00 2001 From: Gustavo Sverzut Barbieri Date: Fri, 14 Mar 2014 11:50:10 -0300 Subject: [PATCH] m4/ac-plugins: evaluate color escape so it works everywhere. the color escapes were being evaluated only on "echo -e", but we're using it in "cat" statements as well. Then evaluate the color escape so it will work everywhere. --- m4/ac-plugins.m4 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/m4/ac-plugins.m4 b/m4/ac-plugins.m4 index 82c2e2f83..62021cd05 100644 --- a/m4/ac-plugins.m4 +++ b/m4/ac-plugins.m4 @@ -3,7 +3,7 @@ define([_XTERM_COLORS], [ # Check for XTerm and define some colors if test "x$TERM" = "xxterm" -o "x$TERM" = "xscreen"; then - COLOR_PREF="\0033\0133" + COLOR_PREF=`echo -e "\0033\0133"` COLOR_H="${COLOR_PREF}1m" COLOR_HGREEN="${COLOR_PREF}1;32m" COLOR_HRED="${COLOR_PREF}1;31m"