diff options
author | Peter Stephenson <pws@users.sourceforge.net> | 2008-10-11 21:57:03 +0000 |
---|---|---|
committer | Peter Stephenson <pws@users.sourceforge.net> | 2008-10-11 21:57:03 +0000 |
commit | b4d336aaca41ab5a671772f2fa61a3ac47a75d96 (patch) | |
tree | b623eb7686755b3ac5870bf353d051106a91c713 /Src | |
parent | 5f83b9960571e21568ae3f3460de3bfc546b3588 (diff) | |
download | zsh-b4d336aaca41ab5a671772f2fa61a3ac47a75d96.tar.gz zsh-b4d336aaca41ab5a671772f2fa61a3ac47a75d96.tar.xz zsh-b4d336aaca41ab5a671772f2fa61a3ac47a75d96.zip |
25845: fix pattern but with backslashed and metafied charaters
Diffstat (limited to 'Src')
-rw-r--r-- | Src/pattern.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/Src/pattern.c b/Src/pattern.c index 81e4bce8b..60f70023a 100644 --- a/Src/pattern.c +++ b/Src/pattern.c @@ -1446,7 +1446,13 @@ patcomppiece(int *flagp) * Marker for restoring a backslash in output: * does not match a character. */ - return patcomppiece(flagp); + next = patcomppiece(flagp); + /* + * Can't match a pure string since we need to do this + * as multiple chunks. + */ + *flagp &= ~P_PURESTR; + return next; break; #ifdef DEBUG default: |