From 7e3f9c222c3c1a45abf7a89d619aa2b487a65c1e Mon Sep 17 00:00:00 2001 From: axel Date: Wed, 12 Oct 2005 21:23:42 +1000 Subject: [PATCH] Escape % sign in escape function darcs-hash:20051012112342-ac50b-97483f3794d0c1f6c2292e7e51c2c64b7b2483d7.gz --- common.c | 1 + 1 file changed, 1 insertion(+) diff --git a/common.c b/common.c index 579b94b70..82e67db42 100644 --- a/common.c +++ b/common.c @@ -927,6 +927,7 @@ wchar_t *escape( const wchar_t *in, case L':': case L'\'': case L'\"': + case L'%': if( escape_all ) *pos++ = L'\\'; *pos++ = *in;