diff -u bash-completion-1.0/debian/changelog bash-completion-1.0/debian/changelog --- bash-completion-1.0/debian/changelog +++ bash-completion-1.0/debian/changelog @@ -1,3 +1,9 @@ +bash-completion (1:1.0-3ubuntu3) karmic; urgency=low + + * Fix for wget -O option not properly escaping folders (435055) + + -- Martin Eve (www.martineve.com) Fri, 13 Nov 2009 11:27:11 +0000 + bash-completion (1:1.0-3ubuntu2) karmic; urgency=low * Backport quote_readline fix for bash 4, since double-quoting for compgen only in patch2: unchanged: --- bash-completion-1.0.orig/bash_completion +++ bash-completion-1.0/bash_completion @@ -4309,7 +4309,8 @@ done # These commands use filenames, so '-o filenames' is not needed. -for i in env netstat seq uname units wget; do +# wget is not included here because it has a -O logfile option that requires proper escaping +for i in env netstat seq uname units; do have $i && complete -F _longopt $default $i done unset i