From df80b569533a247cc56a7bcd08d6c1ad8e2eae11 Mon Sep 17 00:00:00 2001 From: Alexandre Julliard Date: Fri, 30 Jul 2004 18:47:55 +0000 Subject: [PATCH] Fixed bug with % signs in help output (reported by Henning Gerhardt). --- programs/wcmd/builtins.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/programs/wcmd/builtins.c b/programs/wcmd/builtins.c index f36b9455906..a5f34e9765b 100644 --- a/programs/wcmd/builtins.c +++ b/programs/wcmd/builtins.c @@ -342,7 +342,7 @@ char buffer[2048]; if (CompareString (LOCALE_USER_DEFAULT, NORM_IGNORECASE | SORT_STRINGSORT, param1, -1, inbuilt[i], -1) == 2) { LoadString (hinst, i, buffer, sizeof(buffer)); - WCMD_output (buffer); + WCMD_output_asis (buffer); return; } } -- 2.11.4.GIT