Commit 586e171d authored by Dmitry Timoshkov's avatar Dmitry Timoshkov Committed by Alexandre Julliard

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

parent 09238973
......@@ -379,7 +379,7 @@ static void WCMD_show_prompt (void) {
while (*q) q++;
break;
case 'E':
*q++ = '\E';
*q++ = '\x1b';
break;
case 'F':
*q++ = ')';
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment