]> git.eshelyaron.com Git - emacs.git/commitdiff
(vc-svn-print-log): Show recent commits as well.
authorStefan Monnier <monnier@iro.umontreal.ca>
Thu, 9 Feb 2006 03:47:00 +0000 (03:47 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Thu, 9 Feb 2006 03:47:00 +0000 (03:47 +0000)
lisp/ChangeLog
lisp/vc-svn.el

index a071876899628fb97e3eb285950943467b4fa7bd..63fb4667cd1f4caf3a697b4d9e6ebe1e6ac4b778 100644 (file)
@@ -1,3 +1,7 @@
+2006-02-08  Peter Doornbosch  <peter.doornbosch@luminis.nl>  (tiny change)
+
+       * vc-svn.el (vc-svn-print-log): Show recent commits as well.
+
 2006-02-09  Juanma Barranquero  <lekktu@gmail.com>
 
        * hilit-chg.el (hilit-chg-update-all-buffers): Use `mapc' instead of
@@ -10,8 +14,8 @@
 
 2006-02-08  Ryan Yeske  <rcyeske@gmail.com>
 
-       * net/rcirc.el (rcirc-startup-channels-alist): Add
-       irc.freenode.net and #emacs as defaults.
+       * net/rcirc.el (rcirc-startup-channels-alist):
+       Add irc.freenode.net and #emacs as defaults.
        (rcirc-ignore-all-activity-flag): Remove variable.
        (rcirc-authinfo): New variable.
        (rcirc-authinfo-filename): Remove variable.
@@ -31,9 +35,8 @@
        messages.
        (rcirc-user-nick): Save match data.
        (rcirc-toggle-ignore-buffer-activity)
-       (rcirc-update-activity-string): Remove global ignore
-       functionality, which can be done now by toggling
-       rcirc-track-minor-mode.
+       (rcirc-update-activity-string): Remove global ignore functionality,
+       which can be done now by toggling rcirc-track-minor-mode.
        (rcirc-track-minor-mode-map): New keymap.
        (rcirc-track-minor-mode): New minor-mode.
        (ignore): Make the ignore output nicer.  Always print it when
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."