diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2003-05-05 15:49:23 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2003-05-05 15:49:23 +0000 |
commit | 519f6453de3370adefdcc3ce15038c30ccd53381 (patch) | |
tree | a40527b8ba5ce75ec2e5b26d8122ef36ae5a0ec7 /lisp/vc-svn.el | |
parent | d337163ac304f857819af63358a8cfb586b05e93 (diff) | |
download | emacs-519f6453de3370adefdcc3ce15038c30ccd53381.tar.gz |
(vc-svn-registered): Missing paren.
(vc-svn-diff-tree): Missing renaming.
Diffstat (limited to 'lisp/vc-svn.el')
-rw-r--r-- | lisp/vc-svn.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/vc-svn.el b/lisp/vc-svn.el index 780b71746ce..3117a0a33bd 100644 --- a/lisp/vc-svn.el +++ b/lisp/vc-svn.el @@ -131,7 +131,7 @@ by these regular expressions." (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) + (file-error nil)) (vc-svn-parse-status t) (eq 'SVN (vc-file-getprop file 'vc-backend))))) @@ -454,7 +454,7 @@ The changes are between FIRST-VERSION and SECOND-VERSION." (diff-switches-list (vc-diff-switches-list 'SVN))) (apply 'vc-svn-command "*vc-diff*" 1 nil "diff" (append - (when oldvers + (when rev1 (list "-r" (if rev2 (concat rev1 ":" rev2) rev1))) (when diff-switches-list |