diff options
author | Tanaka Akira <akr@users.sourceforge.net> | 1999-04-15 18:20:19 +0000 |
---|---|---|
committer | Tanaka Akira <akr@users.sourceforge.net> | 1999-04-15 18:20:19 +0000 |
commit | 04a89199d02a3ee6c4b3d89a6c782bdb0a4f1bc8 (patch) | |
tree | 2215f99f95d55660fc939a029bf965c454d080b5 /Src/Zle/comp.h | |
parent | 7a0415cfd70a02b2280d27556c6c54cef1c86e1a (diff) | |
download | zsh-04a89199d02a3ee6c4b3d89a6c782bdb0a4f1bc8.tar.gz zsh-04a89199d02a3ee6c4b3d89a6c782bdb0a4f1bc8.tar.xz zsh-04a89199d02a3ee6c4b3d89a6c782bdb0a4f1bc8.zip |
zsh-3.1.5-pws-12 zsh-3.1.5-pws-12
Diffstat (limited to 'Src/Zle/comp.h')
-rw-r--r-- | Src/Zle/comp.h | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/Src/Zle/comp.h b/Src/Zle/comp.h index d7f3610f1..1444197a3 100644 --- a/Src/Zle/comp.h +++ b/Src/Zle/comp.h @@ -311,11 +311,12 @@ struct cline { #define CP_QUOTING (1 << 14) #define CP_RESTORE (1 << 15) #define CP_LIST (1 << 16) -#define CP_INSERT (1 << 17) -#define CP_EXACT (1 << 18) -#define CP_EXACTSTR (1 << 19) -#define CP_PATMATCH (1 << 20) +#define CP_FORCELIST (1 << 17) +#define CP_INSERT (1 << 18) +#define CP_EXACT (1 << 19) +#define CP_EXACTSTR (1 << 20) +#define CP_PATMATCH (1 << 21) -#define CP_NUM 21 +#define CP_NUM 22 #define CP_ALLMASK ((1 << CP_NUM) - 1) |