[Bash-completion-commits] [SCM] bash-completion branch, master, updated. 9f05078e9276cd3e0fcb0a4000c105d6c3558591

David Paleino d.paleino at gmail.com
Sat Apr 4 19:58:16 UTC 2009


The following commit has been merged in the master branch:
commit 9f05078e9276cd3e0fcb0a4000c105d6c3558591
Author: David Paleino <d.paleino at gmail.com>
Date:   Sat Apr 4 21:58:05 2009 +0200

    Permit .gz files concatenation (Debian: #514377)

diff --git a/CHANGES b/CHANGES
index 22b6489..f0278f6 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,7 +1,7 @@
 bash-completion (1.x)
 
   [ David Paleino ]
-  * Prepare for future development.
+  * Permit .gz files concatenation (Debian: #514377)
 
   [ Ville Skyttä ]
   * Split yum and yum-arch completion into contrib/yum.
diff --git a/bash_completion b/bash_completion
index 4d21cf8..16bd2e6 100644
--- a/bash_completion
+++ b/bash_completion
@@ -3481,7 +3481,7 @@ _gzip()
 	elif [[ "$prev" == -* ]]; then
 		[[ "$prev" == -*[dlt]* ]] && xspec="!"$xspec
 		[[ "$prev" == -*f* ]] && xspec=
-	elif [ "$prev" = '>' ]; then
+	elif [ "$prev" = '>' -o "$prev" = '>>' ]; then
 		xspec=
 	elif [ "$prev" = '<' ]; then
 		xspec=

-- 
bash-completion



More information about the Bash-completion-commits mailing list