[Bash-completion-commits] [SCM] bash-completion branch, master, updated. f871fe4101ed89cb98e201aed8c975fd3061905b
Freddy Vulto
fvulto at gmail.com
Thu Sep 24 19:04:28 UTC 2009
The following commit has been merged in the master branch:
commit f871fe4101ed89cb98e201aed8c975fd3061905b
Author: Freddy Vulto <fvulto at gmail.com>
Date: Thu Sep 24 21:00:31 2009 +0200
Fix dd to not break COMP_CWORDS on =
This fixes dd on bash-4 where COMP_CWORDS are broken on = as well.
diff --git a/contrib/dd b/contrib/dd
index 6b98be8..5bc16a3 100644
--- a/contrib/dd
+++ b/contrib/dd
@@ -9,7 +9,7 @@ _dd()
local cur
COMPREPLY=()
- cur=`_get_cword`
+ cur=`_get_cword =`
case "$cur" in
if=*|of=*)
--
bash-completion
More information about the Bash-completion-commits
mailing list