diff options
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | Completion/Unix/Command/_git | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog index ac038944d..59703b852 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,6 @@ 2008-01-22 Clint Adams <clint@zsh.org> - * 24437: Completion/Unix/Command/_git: compensate for + * 24437, 24441: Completion/Unix/Command/_git: compensate for some breakage introduced by 24396. 2008-01-22 Peter Stephenson <pws@csr.com> diff --git a/Completion/Unix/Command/_git b/Completion/Unix/Command/_git index e76f7cc24..71d006074 100644 --- a/Completion/Unix/Command/_git +++ b/Completion/Unix/Command/_git @@ -2655,7 +2655,7 @@ __git_tree_files () { integer at_least_one_tree_added local -a tree_files - Path=${1:h}/ + [[ "$1" == */ ]] && Path="$1" || Path="${1:h}/" shift (( at_least_one_tree_added = 0 )) for tree in $*; do |