diff options
author | Frank Terbeck <bewater@users.sourceforge.net> | 2012-05-23 07:39:48 +0000 |
---|---|---|
committer | Frank Terbeck <bewater@users.sourceforge.net> | 2012-05-23 07:39:48 +0000 |
commit | c45bb3e70c616b359f05e4fac0414375aa93acf1 (patch) | |
tree | 711d4ccabb43f5d248114c33dd46568f13426d5e | |
parent | 7d09ec507c139a16fc4246a1c035f70584cc41ea (diff) | |
download | zsh-c45bb3e70c616b359f05e4fac0414375aa93acf1.tar.gz zsh-c45bb3e70c616b359f05e4fac0414375aa93acf1.tar.xz zsh-c45bb3e70c616b359f05e4fac0414375aa93acf1.zip |
Juliano Ravasi: VCS_INFO_get_data_git: Fix initialisation of `$stgit_unapplied'
-rw-r--r-- | ChangeLog | 8 | ||||
-rw-r--r-- | Functions/VCS_Info/Backends/VCS_INFO_get_data_git | 2 |
2 files changed, 8 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog index c04a1e64b..35cebd835 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2012-05-23 Frank Terbeck <ft@bewatermyfriend.org> + + * Juliano Ravasi: + Functions/VCS_Info/Backends/VCS_INFO_get_data_git: Fix + initialisation of `$stgit_unapplied'. + 2012-05-22 Peter Stephenson <p.w.stephenson@ntlworld.com> * Jun T.: 30483: Completion/Unix/Command/_mount: improved @@ -16321,5 +16327,5 @@ ***************************************************** * This is used by the shell to define $ZSH_PATCHLEVEL -* $Revision: 1.5658 $ +* $Revision: 1.5659 $ ***************************************************** diff --git a/Functions/VCS_Info/Backends/VCS_INFO_get_data_git b/Functions/VCS_Info/Backends/VCS_INFO_get_data_git index 01bf9f3f5..9364fd021 100644 --- a/Functions/VCS_Info/Backends/VCS_INFO_get_data_git +++ b/Functions/VCS_Info/Backends/VCS_INFO_get_data_git @@ -134,7 +134,7 @@ if [[ -d $patchdir ]] ; then stgit_applied=(${(f)"$(< "${patchdir}/applied")"}) stgit_applied=( ${(Oa)stgit_applied} ) stgit_unapplied=(${(f)"$(< "${patchdir}/unapplied")"}) - stgit_unapplied=( ${(oa)stgit_applied} ) + stgit_unapplied=( ${(oa)stgit_unapplied} ) if VCS_INFO_hook 'gen-applied-string' "${stgit_applied[@]}"; then if (( ${#stgit_applied} )); then |