From 6e10067ffd3d2ede3e0a59c36e03d00cee5d9ad1 Mon Sep 17 00:00:00 2001 From: Oliver Kiddle Date: Sun, 11 Jul 2021 00:32:34 +0200 Subject: 49158: remove superfluous function definitions --- Completion/Debian/Command/_dscverify | 38 ++++++++++++++++-------------------- 1 file changed, 17 insertions(+), 21 deletions(-) (limited to 'Completion/Debian/Command/_dscverify') diff --git a/Completion/Debian/Command/_dscverify b/Completion/Debian/Command/_dscverify index 4d383c6c4..84b00e4e7 100644 --- a/Completion/Debian/Command/_dscverify +++ b/Completion/Debian/Command/_dscverify @@ -4,27 +4,23 @@ # This is dscverify, from the Debian devscripts package, version 2.20.2 # ... -_dscverify() { - local all_opts=( - '--help[show the help message and exit]' - '--version[show the version + copyright and exit]' - '--no-default-keyrings[do not check against the default keyrings]' - '*--keyring[add keyring to the list of keyrings used]:keyring:_files -g "*.(kbx|gpg)(-.)"' - '(--nosigcheck --no-sig-check -u)'{--nosigcheck,--no-sig-check,-u}'[do not verify the GPG signature]' - '--verbose[do not suppress GPG output]' - '*:dsc file:_files -g "*.(changes|dsc|buildinfo)(-.)"' - ) +local all_opts=( + '--help[show the help message and exit]' + '--version[show the version + copyright and exit]' + '--no-default-keyrings[do not check against the default keyrings]' + '*--keyring[add keyring to the list of keyrings used]:keyring:_files -g "*.(kbx|gpg)(-.)"' + '(--nosigcheck --no-sig-check -u)'{--nosigcheck,--no-sig-check,-u}"[don't verify the GPG signature]" + "--verbose[don't suppress GPG output]" + '*:dsc file:_files -g "*.(changes|dsc|buildinfo)(-.)"' +) - local first_only=( - '(--no-conf --noconf)'{--no-conf,--noconf}'[do not read the devscripts config file]' - ) +local first_only=( + '(--no-conf --noconf)'{--no-conf,--noconf}"[don't read the devscripts config file]" +) - if (( CURRENT == 2 )); then - all_opts+=($first_only) - fi +if (( CURRENT == 2 )); then + all_opts+=( $first_only ) +fi - _arguments \ - "$all_opts[@]" -} - -_dscverify "$@" +_arguments \ + "$all_opts[@]" -- cgit 1.4.1