summaryrefslogtreecommitdiff
path: root/completions/gnatmake
diff options
context:
space:
mode:
authorDavid Paleino <dapal@debian.org>2011-11-03 12:32:52 +0100
committerDavid Paleino <dapal@debian.org>2011-11-03 12:32:52 +0100
commit2c8171c38d87ddef31c92a76547d3fdf773a1337 (patch)
tree5e720d5a06ead72ed55454bf6647a712a761ed91 /completions/gnatmake
parent9920a8faedf704420571d8072ccab27e9dac40ba (diff)
downloadbash-completion-2c8171c38d87ddef31c92a76547d3fdf773a1337.tar.gz
Imported Upstream version 1.90upstream/1.90
Diffstat (limited to 'completions/gnatmake')
-rw-r--r--completions/gnatmake16
1 files changed, 4 insertions, 12 deletions
diff --git a/completions/gnatmake b/completions/gnatmake
index cdd193c1..e807d923 100644
--- a/completions/gnatmake
+++ b/completions/gnatmake
@@ -1,12 +1,10 @@
-# Gnatmake completion by Ralf_Schroth@t-online.de (Ralf Schroth)
+# Gnatmake completion -*- shell-script -*-
+# by Ralf_Schroth@t-online.de (Ralf Schroth)
-have gnatmake &&
_gnatmake()
{
- local cur
-
- COMPREPLY=()
- _get_comp_words_by_ref cur
+ local cur prev words cword
+ _init_completion || return
if [[ "$cur" == -* ]]; then
# relevant (and less relevant ;-) )options completion
@@ -28,10 +26,4 @@ _gnatmake()
} &&
complete -F _gnatmake gnatmake
-# Local variables:
-# mode: shell-script
-# sh-basic-offset: 4
-# sh-indent-comment: t
-# indent-tabs-mode: nil
-# End:
# ex: ts=4 sw=4 et filetype=sh