The following commit has been merged in the master branch:
commit 7a4e09a6ac294c32bc91e119e708243945024633
Author: Ville Skyttä <[email protected]>
Date:   Sat Jan 16 11:33:18 2010 +0200

    Drop -m from --in etc completion getters.
    
    
http://lists.alioth.debian.org/pipermail/bash-completion-devel/2010-January/002453.html

diff --git a/contrib/ipv6calc b/contrib/ipv6calc
index 142e19e..dca4c14 100644
--- a/contrib/ipv6calc
+++ b/contrib/ipv6calc
@@ -14,7 +14,8 @@ _ipv6calc()
             return 0
             ;;
         -I|--in|-O|--out|-A|--action)
-            COMPREPLY=( $( compgen -W "$( ipv6calc -m "$prev" -h 2>&1 | \
+            # With ipv6calc < 0.73.0, -m does nothing here, so use sed instead.
+            COMPREPLY=( $( compgen -W "$( ipv6calc "$prev" -h 2>&1 | \
                 sed -ne 
's/^[[:space:]]\{1,\}\([^[:space:]:]\{1,\}\)[[:space:]]*:.*/\1/p' )" \
                 -- "$cur" ) )
             return 0

-- 
bash-completion

_______________________________________________
Bash-completion-commits mailing list
[email protected]
http://lists.alioth.debian.org/mailman/listinfo/bash-completion-commits

Reply via email to