diff options
author | Nick Roberts <nickrob@snap.net.nz> | 2008-10-30 09:23:31 +0000 |
---|---|---|
committer | Nick Roberts <nickrob@snap.net.nz> | 2008-10-30 09:23:31 +0000 |
commit | 09c6e72e599a0ef7ec3b02441381d798fab0067b (patch) | |
tree | 45af1a011b7627d9f2781d6755a9cc7d11352dad /lisp/vc-svn.el | |
parent | acd1db23317632b3898d94f9c82b36f89a6fb17a (diff) | |
download | emacs-09c6e72e599a0ef7ec3b02441381d798fab0067b.tar.gz |
(vc-svn-diff): If files is nil don't set oldvers to
nil so that log-view-diff-changeset works.
Diffstat (limited to 'lisp/vc-svn.el')
-rw-r--r-- | lisp/vc-svn.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/vc-svn.el b/lisp/vc-svn.el index 26e18d06d71..a53b478d226 100644 --- a/lisp/vc-svn.el +++ b/lisp/vc-svn.el @@ -476,6 +476,7 @@ or svn+ssh://." (defun vc-svn-diff (files &optional oldvers newvers buffer) "Get a difference report using SVN between two revisions of fileset FILES." (and oldvers + files (catch 'no (dolist (f files) (or (equal oldvers (vc-working-revision f)) |