summaryrefslogtreecommitdiffstats
path: root/bash-completion/getopt
diff options
context:
space:
mode:
Diffstat (limited to 'bash-completion/getopt')
-rw-r--r--bash-completion/getopt2
1 files changed, 1 insertions, 1 deletions
diff --git a/bash-completion/getopt b/bash-completion/getopt
index d18d2a166..5e3fca61c 100644
--- a/bash-completion/getopt
+++ b/bash-completion/getopt
@@ -27,7 +27,7 @@ _getopt_module()
esac
case $cur in
-*)
- OPTS="-a --alternative -h --help -l --longoptions -n --name -o --options -q --quiet -Q --quiet-output -s --shell -T --test -u --unquote -V --version"
+ OPTS="--alternative --help --longoptions --name --options --quiet --quiet-output --shell --test --unquoted --version"
COMPREPLY=( $(compgen -W "${OPTS[*]}" -- $cur) )
return 0
;;