[Bash-completion-commits] ./current r1194: Forgot a ${toks[@]} ;)

David Paleino d.paleino at gmail.com
Fri Oct 24 17:34:28 UTC 2008


------------------------------------------------------------
revno: 1194
committer: David Paleino <d.paleino at gmail.com>
branch nick: current
timestamp: Fri 2008-10-24 19:34:28 +0200
message:
  Forgot a ${toks[@]} ;)
modified:
  bash_completion
-------------- next part --------------
=== modified file 'bash_completion'
--- a/bash_completion	2008-10-24 17:17:23 +0000
+++ b/bash_completion	2008-10-24 17:34:28 +0000
@@ -9577,7 +9577,7 @@
 	xspec=${xspec#*-X }
 	xspec=${xspec%% *}
 
-	toks=( $(
+	toks=( ${toks[@]} $(
 		compgen -d -- "$(quote_readline "$cur")" | {
 			while read -r tmp; do
 				[[ -n $tmp ]] && echo $tmp



More information about the Bash-completion-commits mailing list