diff options
author | Peter Stephenson <pws@users.sourceforge.net> | 2000-04-04 19:34:26 +0000 |
---|---|---|
committer | Peter Stephenson <pws@users.sourceforge.net> | 2000-04-04 19:34:26 +0000 |
commit | e2fad744a42b7e6d640def9afc03dc92641c911d (patch) | |
tree | 985fc75d8e10ca289999d69e813baae29fa55915 /Completion/Linux/_rpm | |
parent | 8b277826ebf259810e185355771f84691412be7d (diff) | |
download | zsh-e2fad744a42b7e6d640def9afc03dc92641c911d.tar.gz zsh-e2fad744a42b7e6d640def9afc03dc92641c911d.tar.xz zsh-e2fad744a42b7e6d640def9afc03dc92641c911d.zip |
Patches 10440 (Chmouel), 10448, 10477 (Clint)
Diffstat (limited to 'Completion/Linux/_rpm')
-rw-r--r-- | Completion/Linux/_rpm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Completion/Linux/_rpm b/Completion/Linux/_rpm index 9ef2d57d9..9a39773c4 100644 --- a/Completion/Linux/_rpm +++ b/Completion/Linux/_rpm @@ -202,7 +202,7 @@ while [[ -n "$state" ]]; do fi ;; tags) - if compset -P '*\{'; then + if compset -P '*%*\{'; then _wanted tags expl 'RPM tag' \ compadd -M 'm:{a-z}={A-Z}' -S '\}' - \ "${(@)${(@f)$(_call tags rpm --querytags)}#RPMTAG_}" && ret=0 |