diff options
-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 f47e885ef..b7aa2f8ad 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2009-06-26 Peter Stephenson <p.w.stephenson@ntlworld.com> + + * Frank Terbeck: users/14207: + Functions/VCS_Info/Backends/VCS_INFO_get_data_git: make + variable local. + 2009-06-19 Peter Stephenson <p.w.stephenson@ntlworld.com> * Frank Terbeck: 27049, 27050, 27051, 27052: @@ -11851,5 +11857,5 @@ ***************************************************** * This is used by the shell to define $ZSH_PATCHLEVEL -* $Revision: 1.4716 $ +* $Revision: 1.4717 $ ***************************************************** diff --git a/Functions/VCS_Info/Backends/VCS_INFO_get_data_git b/Functions/VCS_Info/Backends/VCS_INFO_get_data_git index 33e76d44f..7b961a4a7 100644 --- a/Functions/VCS_Info/Backends/VCS_INFO_get_data_git +++ b/Functions/VCS_Info/Backends/VCS_INFO_get_data_git @@ -3,7 +3,7 @@ ## Distributed under the same BSD-ish license as zsh itself. setopt localoptions extendedglob NO_shwordsplit -local gitdir gitbase gitbranch gitaction gitunstaged gitstaged gitsha1 +local gitdir gitbase gitbranch gitaction gitunstaged gitstaged gitsha1 gitmisc VCS_INFO_git_getaction () { local gitaction='' gitdir=$1 |