[Bash-completion-commits] [SCM] bash-completion branch, master, updated. 1.3-529-g3f85172

Ville Skyttä ville.skytta at iki.fi
Wed Nov 9 16:17:16 UTC 2011


The following commit has been merged in the master branch:
commit e4ff8d98a33fbcad5aa5c86a426169099dd728cc
Author: Ville Skyttä <ville.skytta at iki.fi>
Date:   Wed Nov 9 18:06:59 2011 +0200

    chkconfig: Wrap long lines.

diff --git a/completions/chkconfig b/completions/chkconfig
index 31a575e..d7935c6 100644
--- a/completions/chkconfig
+++ b/completions/chkconfig
@@ -19,10 +19,12 @@ _chkconfig()
     $split && return 0
 
     if [[ "$cur" == -* ]]; then
-        COMPREPLY=( $( compgen -W '--list --add --del --override --level' -- "$cur" ) )
+        COMPREPLY=( $( compgen -W '--list --add --del --override --level' \
+            -- "$cur" ) )
     else
         if [[ $cword -eq 2 || $cword -eq 4 ]]; then
-            COMPREPLY=( $( compgen -W 'on off reset resetpriorities' -- "$cur" ) )
+            COMPREPLY=( $( compgen -W 'on off reset resetpriorities' \
+                -- "$cur" ) )
         else
             _services
         fi

-- 
bash-completion



More information about the Bash-completion-commits mailing list