Fix rsync remote path completion (Alioth: #312173).

master
Jeremie Lasalle Ratelle 2009-12-23 16:18:32 +02:00 committed by Ville Skyttä
parent ed45c2caaf
commit e2e1c391ed
2 changed files with 4 additions and 1 deletions

View File

@ -55,6 +55,9 @@ bash-completion (2.x)
[ Ted Stern ]
* Fix modules completion for "(default)" entries.
[ Jeremie Lasalle Ratelle ]
* Fix rsync remote path completion (Alioth: #312173).
-- David Paleino <d.paleino@gmail.com> Sun, 11 Oct 2009 11:11:57 +0200
bash-completion (1.1)

View File

@ -8,7 +8,7 @@ _rsync()
local cur prev shell i userhost path
COMPREPLY=()
cur=`_get_cword`
cur=`_get_cword :`
prev=${COMP_WORDS[COMP_CWORD-1]}
_expand || return 0