diff options
author | Peter Stephenson <pws@zsh.org> | 2015-05-11 09:40:00 +0100 |
---|---|---|
committer | Peter Stephenson <pws@zsh.org> | 2015-05-11 09:40:00 +0100 |
commit | d756f4eafd5d9f5fb3125d88d6a8b703b3ab6078 (patch) | |
tree | b957d9e914d226ea5222ea4d8dac95d404f8849a /Src/zsh.h | |
parent | 6269db883ad6989a578bac299deab9c4285bb1df (diff) | |
download | zsh-d756f4eafd5d9f5fb3125d88d6a8b703b3ab6078.tar.gz zsh-d756f4eafd5d9f5fb3125d88d6a8b703b3ab6078.tar.xz zsh-d756f4eafd5d9f5fb3125d88d6a8b703b3ab6078.zip |
35078: Add backslash quoting to parameter (b) flag from 35067.
Diffstat (limited to 'Src/zsh.h')
-rw-r--r-- | Src/zsh.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Src/zsh.h b/Src/zsh.h index b2ab1dfae..f6e08e28d 100644 --- a/Src/zsh.h +++ b/Src/zsh.h @@ -217,7 +217,7 @@ struct mathfunc { /* chars that need to be quoted for pattern matching */ -#define PATCHARS "#^*()|[]<>?~" +#define PATCHARS "#^*()|[]<>?~\\" /* * Types of quote. This is used in various places, so care needs |