1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-11-02 06:40:55 +01:00

c.f. 26867: remove extraneous "${"

This commit is contained in:
Peter Stephenson 2009-04-22 08:31:53 +00:00
parent 0c11cb5b47
commit 46fd8beec7
2 changed files with 7 additions and 2 deletions

View file

@ -1,3 +1,8 @@
2009-04-22 Peter Stephenson <pws@csr.com>
* see 26867: Functions/VCS_Info/Backends/VCS_INFO_get_data_svk:
remove odd "${".
2009-04-21 Peter Stephenson <pws@csr.com>
* Greg Klanderman: 26862: Functions/Misc/run-help: remove
@ -11598,5 +11603,5 @@
*****************************************************
* This is used by the shell to define $ZSH_PATCHLEVEL
* $Revision: 1.4662 $
* $Revision: 1.4663 $
*****************************************************

View file

@ -9,5 +9,5 @@ svkbase=${vcs_comm[basedir]}
rrn=${svkbase:t}
zstyle -s ":vcs_info:${vcs}:${usercontext}:${rrn}" branchformat svkbranch || svkbranch="%b:%r"
zformat -f svkbranch "${svkbranch}" "b:${vcs_comm[branch]}" "r:${vcs_comm[revision]}"
VCS_INFO_formats '' "${svkbranch}" "${svkbase}" '' '' "${${vcs_comm[revision]}" ''
VCS_INFO_formats '' "${svkbranch}" "${svkbase}" '' '' "${vcs_comm[revision]}" ''
return 0