mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-10 15:14:44 +00:00
Use \x1B instead of \e.
This commit is contained in:
parent
c64a86efae
commit
d6c9d3ce94
1 changed files with 1 additions and 1 deletions
|
@ -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';
|
||||
|
|
Loading…
Reference in a new issue