emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lisp/vc-svn.el


From: Stefan Monnier
Subject: [Emacs-diffs] Changes to emacs/lisp/vc-svn.el
Date: Sun, 13 Nov 2005 23:33:05 -0500

Index: emacs/lisp/vc-svn.el
diff -c emacs/lisp/vc-svn.el:1.21 emacs/lisp/vc-svn.el:1.22
*** emacs/lisp/vc-svn.el:1.21   Sat Aug  6 22:13:43 2005
--- emacs/lisp/vc-svn.el        Mon Nov 14 04:33:03 2005
***************
*** 116,123 ****
        (cd (file-name-directory file))
        (condition-case nil
          (vc-svn-command t 0 file "status" "-v")
!       ;; We can't find an `svn' executable.  We could also deregister SVN.
!       (file-error nil))
        (vc-svn-parse-status t)
        (eq 'SVN (vc-file-getprop file 'vc-backend)))))
  
--- 116,126 ----
        (cd (file-name-directory file))
        (condition-case nil
          (vc-svn-command t 0 file "status" "-v")
!       ;; Some problem happened.  E.g. We can't find an `svn' executable.
!         ;; We used to only catch `file-error' but when the process is run on
!         ;; a remote host via Tramp, the error is only reported via the
!         ;; exit status which is turned into an `error' by vc-do-command.
!       (error nil))
        (vc-svn-parse-status t)
        (eq 'SVN (vc-file-getprop file 'vc-backend)))))
  




reply via email to

[Prev in Thread] Current Thread [Next in Thread]