Fixed bug with % signs in help output (reported by Henning Gerhardt).
This commit is contained in:
parent
e7c40e298f
commit
df80b56953
|
@ -342,7 +342,7 @@ char buffer[2048];
|
||||||
if (CompareString (LOCALE_USER_DEFAULT, NORM_IGNORECASE | SORT_STRINGSORT,
|
if (CompareString (LOCALE_USER_DEFAULT, NORM_IGNORECASE | SORT_STRINGSORT,
|
||||||
param1, -1, inbuilt[i], -1) == 2) {
|
param1, -1, inbuilt[i], -1) == 2) {
|
||||||
LoadString (hinst, i, buffer, sizeof(buffer));
|
LoadString (hinst, i, buffer, sizeof(buffer));
|
||||||
WCMD_output (buffer);
|
WCMD_output_asis (buffer);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue