mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-09-02 10:01:11 +02:00
37923: Completion: _bts: Fix quoting of $DEBEMAIL.
This commit is contained in:
parent
99d90e4b06
commit
ea626708a5
2 changed files with 5 additions and 2 deletions
|
@ -1,5 +1,8 @@
|
|||
2016-02-09 Daniel Shahaf <d.s@daniel.shahaf.name>
|
||||
|
||||
* 37923: Completion/Debian/Command/_bts: Completion: _bts:
|
||||
Fix quoting of $DEBEMAIL.
|
||||
|
||||
* 37922: Util/zyodl.vim: zyodl.vim: Add alternative installation
|
||||
instructions.
|
||||
|
||||
|
|
|
@ -42,7 +42,7 @@ case "$words[1]" in
|
|||
if [[ CURRENT -eq 2 ]]; then
|
||||
_alternative \
|
||||
'packages:package:_deb_packages avail' \
|
||||
"emails:package maintainer:compadd $DEBEMAIL"
|
||||
'emails:package maintainer:compadd $DEBEMAIL'
|
||||
else
|
||||
_wanted sep expl 'separator' compadd -S ' ' , .
|
||||
fi
|
||||
|
@ -51,7 +51,7 @@ case "$words[1]" in
|
|||
if [[ CURRENT -eq 2 ]]; then
|
||||
_message -e bugnum 'bug number'
|
||||
elif [[ CURRENT -eq 3 ]]; then
|
||||
_wanted submitter expl 'new submitter' compadd $DEBEMAIL
|
||||
_wanted submitter expl 'new submitter' compadd -- $DEBEMAIL
|
||||
else
|
||||
_wanted sep expl 'separator' compadd -S ' ' , .
|
||||
fi
|
||||
|
|
Loading…
Reference in a new issue