diff options
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: |