summaryrefslogtreecommitdiff
path: root/completions/autoconf
diff options
context:
space:
mode:
Diffstat (limited to 'completions/autoconf')
-rw-r--r--completions/autoconf12
1 files changed, 6 insertions, 6 deletions
diff --git a/completions/autoconf b/completions/autoconf
index fea524e7..c67f1bdb 100644
--- a/completions/autoconf
+++ b/completions/autoconf
@@ -7,25 +7,25 @@ _autoconf()
case "$prev" in
--help|-h|--version|-V|--trace|-t)
- return 0
+ return
;;
--output|-o)
_filedir
- return 0
+ return
;;
--warnings|-W)
local cats=( cross obsolete syntax )
COMPREPLY=( $( compgen -W \
'${cats[@]} ${cats[@]/#/no-} all none error' -- "$cur" ) )
- return 0
+ return
;;
--prepend-include|-B|--include|-I)
_filedir -d
- return 0
+ return
;;
esac
- $split && return 0
+ $split && return
if [[ "$cur" == -* ]]; then
COMPREPLY=( $( compgen -W '$( _parse_help "$1" )' -- "$cur" ) )
@@ -37,4 +37,4 @@ _autoconf()
} &&
complete -F _autoconf autoconf
-# ex: ts=4 sw=4 et filetype=sh
+# ex: filetype=sh