]> code.delx.au - gnu-emacs/blobdiff - lisp/vc-svn.el
*** empty log message ***
[gnu-emacs] / lisp / vc-svn.el
index 82942f78358edf72c3025e3ef334203e9b8c5f71..6d27c5c6a7ed41105d37dad00baa9f14a7357e6e 100644 (file)
@@ -370,7 +370,11 @@ The changes are between FIRST-VERSION and SECOND-VERSION."
     (vc-svn-command
      buffer
      (if (and (vc-stay-local-p file) (fboundp 'start-process)) 'async 0)
-     file "log")))
+     file "log"
+     ;; By default Subversion only shows the log upto the working version,
+     ;; whereas we also want the log of the subsequent commits.  At least
+     ;; that's what the vc-cvs.el code does.
+     "-rHEAD:0")))
 
 (defun vc-svn-diff (file &optional oldvers newvers buffer)
   "Get a difference report using SVN between two versions of FILE."