diff options
author | Axel Beckert <abe@deuxchevaux.org> | 2015-09-11 21:51:49 +0200 |
---|---|---|
committer | Axel Beckert <abe@deuxchevaux.org> | 2015-09-11 21:51:49 +0200 |
commit | 7534dfa8848251305ad2914c338f232050f6a500 (patch) | |
tree | e693cdc8e3eaa157574c10de89a94a3547faa78e /Src/Zle/comp.h | |
parent | 63deeaba7e4ae09b81d933985152c4240ae08d25 (diff) | |
parent | 68405f31a043bdd5bf338eb06688ed3e1f740937 (diff) | |
download | zsh-7534dfa8848251305ad2914c338f232050f6a500.tar.gz zsh-7534dfa8848251305ad2914c338f232050f6a500.zip |
Merge tag 'zsh-5.1.1' into debian
Diffstat (limited to 'Src/Zle/comp.h')
-rw-r--r-- | Src/Zle/comp.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Src/Zle/comp.h b/Src/Zle/comp.h index 34da2cabb..023c41814 100644 --- a/Src/Zle/comp.h +++ b/Src/Zle/comp.h @@ -202,8 +202,9 @@ struct cpattern { * TODO: this will change. */ #ifdef MULTIBYTE_SUPPORT -#define PATMATCHRANGE(r, c, ip, mtp) mb_patmatchrange(r, c, ip, mtp) -#define PATMATCHINDEX(r, i, cp, mtp) mb_patmatchindex(r, i, cp, mtp) +#define PATMATCHRANGE(r, c, ip, mtp) \ + mb_patmatchrange(r, c, ZMB_VALID, ip, mtp) +#define PATMATCHINDEX(r, i, cp, mtp) mb_patmatchindex(r, i, cp, mtp) #define CONVCAST(c) ((wchar_t)(c)) #define CHR_INVALID (WEOF) #else |