diff options
author | Clint Adams <clint@users.sourceforge.net> | 2009-07-10 23:54:20 +0000 |
---|---|---|
committer | Clint Adams <clint@users.sourceforge.net> | 2009-07-10 23:54:20 +0000 |
commit | a8fb2bbc3d580ebff421a02b9499be6a8a20b055 (patch) | |
tree | 85fccdf90b0e08befc8f952854d32d1f3a5b19ef /Completion | |
parent | 4db28c55b64ec25cd258f87a0d60b0544fe50059 (diff) | |
download | zsh-a8fb2bbc3d580ebff421a02b9499be6a8a20b055.tar.gz zsh-a8fb2bbc3d580ebff421a02b9499be6a8a20b055.tar.xz zsh-a8fb2bbc3d580ebff421a02b9499be6a8a20b055.zip |
27127: Vincent Bernat: handle bts fixed and bts notfixed.
Diffstat (limited to 'Completion')
-rw-r--r-- | Completion/Debian/Command/_bts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Completion/Debian/Command/_bts b/Completion/Debian/Command/_bts index 663102d13..fb5cc52e3 100644 --- a/Completion/Debian/Command/_bts +++ b/Completion/Debian/Command/_bts @@ -26,7 +26,7 @@ if [[ CURRENT -eq 1 ]]; then reassign merge unmerge tag tags severity forwarded notforwarded help \ clone submitter found notfound block unblock user usertag usertags \ package owner noowner reportspam cache cleancache claim unclaim \ - subscribe unsubscribe + subscribe unsubscribe fixed notfixed return fi @@ -147,7 +147,7 @@ case "$words[1]" in _wanted sep expl 'separator' compadd -S ' ' , . fi ;; - (found|notfound) + (found|notfound|fixed|notfixed) if [[ CURRENT -eq 2 ]]; then _message -e bugnum 'bug number' elif [[ CURRENT -eq 3 ]]; then |