Use \x1B instead of \e.

This commit is contained in:
Konrad Borowski 2013-07-12 09:40:29 +02:00 committed by ridiculousfish
parent c64a86efae
commit d6c9d3ce94

View file

@ -1658,7 +1658,7 @@ static int builtin_echo(parser_t &parser, wchar_t **argv)
wc = L'\b';
break;
case L'e':
wc = L'\e';
wc = L'\x1B';
break;
case L'f':
wc = L'\f';