Commit 00f5094a authored by Sylvain Petreolle's avatar Sylvain Petreolle Committed by Alexandre Julliard

Implement $V in builtin PROMPT.

parent 435e2e63
......@@ -484,6 +484,10 @@ char *p, *q;
GetTimeFormat (LOCALE_USER_DEFAULT, 0, NULL, NULL, q, MAX_PATH);
while (*q) q++;
break;
case 'V':
lstrcat (q, version_string);
while (*q) q++;
break;
case '_':
*q++ = '\n';
break;
......
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