From 0d7d66039b614b642c775432fd64aa8c11f9a64d Mon Sep 17 00:00:00 2001 From: Herbert Xu Date: Sat, 27 Jun 2009 21:00:39 +0800 Subject: [EXPAND] Fix quoted pattern patch breakage The change [EXPAND] Do not quote back slashes in parameter expansions outside quotes broke quote removal after parameter expansion. This is because its effecte extended beyond that of quoted patterns. This patch fixes this by limiting the change to just quoted patterns. Signed-off-by: Herbert Xu --- src/parser.c | 1 - 1 file changed, 1 deletion(-) (limited to 'src/parser.c') diff --git a/src/parser.c b/src/parser.c index dad1037..28a46c0 100644 --- a/src/parser.c +++ b/src/parser.c @@ -901,7 +901,6 @@ readtoken1(int firstc, char const *syntax, char *eofmark, int striptabs) break; /* backslash */ case CBACK: - case CDBACK: c = pgetc2(); if (c == PEOF) { USTPUTC(CTLESC, out); -- cgit 1.4.1