diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2006-02-09 03:47:00 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2006-02-09 03:47:00 +0000 |
commit | bf54d814520785e8299cfe6d7ce445304703b492 (patch) | |
tree | 938b70fa78474ff19d68af7441f57512479de2cd /lisp/vc-svn.el | |
parent | ddd1e91e60b58cfcc553236f75f4cbadef71244c (diff) | |
download | emacs-bf54d814520785e8299cfe6d7ce445304703b492.tar.gz emacs-bf54d814520785e8299cfe6d7ce445304703b492.tar.bz2 emacs-bf54d814520785e8299cfe6d7ce445304703b492.zip |
(vc-svn-print-log): Show recent commits as well.
Diffstat (limited to 'lisp/vc-svn.el')
-rw-r--r-- | lisp/vc-svn.el | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lisp/vc-svn.el b/lisp/vc-svn.el index 82942f78358..6d27c5c6a7e 100644 --- a/lisp/vc-svn.el +++ b/lisp/vc-svn.el @@ -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." |