From 3fc1ba0f0e80f487c3bd078ae6da1be5a680a040 Mon Sep 17 00:00:00 2001 From: axel Date: Sun, 9 Sep 2007 05:18:55 +1000 Subject: [PATCH] Fix incorrect escape character in unescape function darcs-hash:20070908191855-ac50b-e98e433dc23b6357c3a23d935de4bcb55efb9da9.gz --- common.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common.c b/common.c index 677a5c72c..d40f43880 100644 --- a/common.c +++ b/common.c @@ -996,7 +996,7 @@ wchar_t *unescape( const wchar_t * orig, int flags ) /* \x1b means escape */ - case L'\x1b': + case L'e': { in[out_pos]=L'\x1b'; break; @@ -1039,7 +1039,7 @@ wchar_t *unescape( const wchar_t * orig, int flags ) } /* - \v means vetrical tab + \v means vertical tab */ case L'v': {