[Bash-completion-commits] ./current r1138: fixed _java_packages()
David Paleino
d.paleino at gmail.com
Mon Jun 23 09:48:08 UTC 2008
------------------------------------------------------------
revno: 1138
committer: David Paleino <d.paleino at gmail.com>
branch nick: current
timestamp: Mon 2008-06-23 11:48:08 +0200
message:
fixed _java_packages()
modified:
bash_completion
debian/changelog
-------------- next part --------------
=== modified file 'bash_completion'
--- a/bash_completion 2008-06-23 09:46:30 +0000
+++ b/bash_completion 2008-06-23 09:48:08 +0000
@@ -4692,7 +4692,7 @@
fi
done
# keep only packages
- COMPREPLY=( $( echo ${COMPREPLY[@]} | tr " " "\n" | grep "/$" ) )
+ COMPREPLY=( $( echo "${COMPREPLY[@]}" | tr " " "\n" | grep "/$" ) )
# remove packages extension
COMPREPLY=( ${COMPREPLY[@]%/} )
# convert path syntax to package syntax
=== modified file 'debian/changelog'
--- a/debian/changelog 2008-06-23 09:46:30 +0000
+++ b/debian/changelog 2008-06-23 09:48:08 +0000
@@ -11,8 +11,9 @@
addition to standard ones.
- fixed _command() to correctly prune the command line
- disabled completion of PostgreSQL users and databases
+ - fixed _java_packages()
- -- David Paleino <d.paleino at gmail.com> Mon, 23 Jun 2008 11:45:52 +0200
+ -- David Paleino <d.paleino at gmail.com> Mon, 23 Jun 2008 11:47:52 +0200
bash-completion (20080617.3) unstable; urgency=low
More information about the Bash-completion-commits
mailing list