Revision: 4072 Author: hans URL: http://bknr.net/trac/changeset/4072
Make svn mode more tolerant when the output of svn status is not quite what it expects.
U trunk/thirdparty/emacs/vc-svn.el
Modified: trunk/thirdparty/emacs/vc-svn.el =================================================================== --- trunk/thirdparty/emacs/vc-svn.el 2008-11-20 16:13:02 UTC (rev 4071) +++ trunk/thirdparty/emacs/vc-svn.el 2008-11-20 16:31:19 UTC (rev 4072) @@ -184,7 +184,8 @@ (match-string 3))) ((looking-at "^I +") nil) ;; An ignored file ((looking-at " \{40\}") nil) ;; A file that is not in the wc nor svn? - (t (error "Couldn't parse output from `svn status -v'"))))) + (t (warn "Couldn't parse output from `svn status -v'") + nil))))
(defun vc-svn-parse-state-only ()