1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-09-30 19:20:53 +02:00

24437: compensate for some breakage introduced by 24396.

This commit is contained in:
Clint Adams 2008-01-22 16:44:09 +00:00
parent 088e8a9c8d
commit dd703246bb
2 changed files with 6 additions and 2 deletions

View file

@ -1,3 +1,8 @@
2008-01-22 Clint Adams <clint@zsh.org>
* 24437: Completion/Unix/Command/_git: compensate for
some breakage introduced by 24396.
2008-01-22 Peter Stephenson <pws@csr.com>
* 24434: Src/Zle/zle_refresh.c: handle unprintable and zero-width

View file

@ -2655,8 +2655,7 @@ __git_tree_files () {
integer at_least_one_tree_added
local -a tree_files
Path=${1%/*}/
[[ $Path = / ]] && Path=.
Path=${1:h}/
shift
(( at_least_one_tree_added = 0 ))
for tree in $*; do