diff options
author | Axel Beckert <abe@deuxchevaux.org> | 2016-12-06 21:51:35 +0100 |
---|---|---|
committer | Axel Beckert <abe@deuxchevaux.org> | 2016-12-06 21:51:35 +0100 |
commit | e631e433ac7afacf9f756f2bc0dec47fa5930a24 (patch) | |
tree | 9d67e40f2c33ad956c063f1356dbd226cf649850 /Src/Zle/comp.h | |
parent | f6ab748f518e7fa542f3a7bef311c698a45b1fef (diff) | |
parent | 9f605904dda106c181717877f29261782fbf243d (diff) | |
download | zsh-e631e433ac7afacf9f756f2bc0dec47fa5930a24.tar.gz zsh-e631e433ac7afacf9f756f2bc0dec47fa5930a24.zip |
Merge tag 'zsh-5.2-test-2' into debian
Second test version before 5.3
Diffstat (limited to 'Src/Zle/comp.h')
-rw-r--r-- | Src/Zle/comp.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Src/Zle/comp.h b/Src/Zle/comp.h index 3711fde29..3e9834560 100644 --- a/Src/Zle/comp.h +++ b/Src/Zle/comp.h @@ -153,7 +153,9 @@ struct cmatcher { Cpattern line; /* what matches on the line */ int llen; /* length of line pattern */ Cpattern word; /* what matches in the word */ - int wlen; /* length of word pattern */ + int wlen; /* length of word pattern, or: + -1: word pattern is one asterisk + -2: word pattern is two asterisks */ Cpattern left; /* left anchor */ int lalen; /* length of left anchor */ Cpattern right; /* right anchor */ |