cmd: '$E' in the prompt should be interpreted as an escape code (0x1b).

Signed-off-by: Dmitry Timoshkov <dmitry@baikal.ru>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
oldstable
Dmitry Timoshkov 2017-06-21 16:24:11 +08:00 committed by Alexandre Julliard
parent 09238973e8
commit 586e171d6f
1 changed files with 1 additions and 1 deletions

View File

@ -379,7 +379,7 @@ static void WCMD_show_prompt (void) {
while (*q) q++;
break;
case 'E':
*q++ = '\E';
*q++ = '\x1b';
break;
case 'F':
*q++ = ')';