From e2b7a078f426e9be7d37b2e8dfa5183afb8fc7ef Mon Sep 17 00:00:00 2001 From: axel Date: Fri, 1 Sep 2006 01:59:32 +1000 Subject: [PATCH] Make "$foo\[1]" not be an array slicing. Notice the extra backslash darcs-hash:20060831155932-ac50b-746462d2147f349f9a799cb4786a0abacd1d3d4a.gz --- common.c | 1 + 1 file changed, 1 insertion(+) diff --git a/common.c b/common.c index c8ee43c63..e5138f28b 100644 --- a/common.c +++ b/common.c @@ -976,6 +976,7 @@ wchar_t *unescape( const wchar_t * orig, int unescape_special ) default: { + in[out_pos++] = INTERNAL_SEPARATOR; in[out_pos]=in[in_pos]; break; }