1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2026-01-07 22:11:15 +01:00

Lennart Weller: 28739: Fix svn detection in vcs_info

This commit is contained in:
Frank Terbeck 2011-02-11 07:05:09 +00:00
parent 732a07ad95
commit f5b07d4868
2 changed files with 8 additions and 2 deletions

View file

@ -1,3 +1,9 @@
2011-02-11 Frank Terbeck <ft@bewatermyfriend.org>
* Lennart Weller: 28739:
Functions/VCS_Info/Backends/VCS_INFO_detect_svn: Fix svn
detection in vcs_info.
2011-02-10 Barton E. Schaefer <schaefer@zsh.org>
* users/15759 (slightly augmented): Functions/Zle/send-invisible,
@ -14181,5 +14187,5 @@
*****************************************************
* This is used by the shell to define $ZSH_PATCHLEVEL
* $Revision: 1.5193 $
* $Revision: 1.5194 $
*****************************************************

View file

@ -7,5 +7,5 @@ setopt localoptions NO_shwordsplit
[[ $1 == '--flavours' ]] && return 1
VCS_INFO_check_com ${vcs_comm[cmd]} || return 1
[[ -d ".svn" ]] && return 0
{ [[ -f ".svn/entries" ]] || [[ -f ".svn/format" ]] } && return 0
return 1