diff options
| author | Miles Ohlrich <miles.ohlrich@isilon.com> | 2014-08-04 14:35:10 -0700 |
|---|---|---|
| committer | Barton E. Schaefer <schaefer@zsh.org> | 2014-08-04 14:35:10 -0700 |
| commit | 22ee3a4fd9698b221d10ecda501d7579132e95fc (patch) | |
| tree | 0782d996880c034d27fe79836cba1f49f23a0644 /Src/Zle/compctl.c | |
| parent | 32954: Missed the doc change. (diff) | |
| download | zsh-22ee3a4fd9698b221d10ecda501d7579132e95fc.tar zsh-22ee3a4fd9698b221d10ecda501d7579132e95fc.tar.gz zsh-22ee3a4fd9698b221d10ecda501d7579132e95fc.tar.bz2 zsh-22ee3a4fd9698b221d10ecda501d7579132e95fc.tar.lz zsh-22ee3a4fd9698b221d10ecda501d7579132e95fc.tar.xz zsh-22ee3a4fd9698b221d10ecda501d7579132e95fc.tar.zst zsh-22ee3a4fd9698b221d10ecda501d7579132e95fc.zip | |
32958: bitwise logic fix
Diffstat (limited to 'Src/Zle/compctl.c')
| -rw-r--r-- | Src/Zle/compctl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Src/Zle/compctl.c b/Src/Zle/compctl.c index 2563095d8..52b9e9c82 100644 --- a/Src/Zle/compctl.c +++ b/Src/Zle/compctl.c @@ -3391,7 +3391,7 @@ makecomplistflags(Compctl cc, char *s, int incmd, int compadd) mflags |= CMF_FILE; for (n = firstnode(l); n; incnode(n)) addmatch(getdata(n), NULL); - mflags &= !CMF_FILE; + mflags &= ~CMF_FILE; } opts[NULLGLOB] = ng; } else { |
