aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2006-02-09 03:47:00 +0000
committerStefan Monnier2006-02-09 03:47:00 +0000
commitbf54d814520785e8299cfe6d7ce445304703b492 (patch)
tree938b70fa78474ff19d68af7441f57512479de2cd
parentddd1e91e60b58cfcc553236f75f4cbadef71244c (diff)
downloademacs-bf54d814520785e8299cfe6d7ce445304703b492.tar.gz
emacs-bf54d814520785e8299cfe6d7ce445304703b492.zip
(vc-svn-print-log): Show recent commits as well.
-rw-r--r--lisp/ChangeLog13
-rw-r--r--lisp/vc-svn.el6
2 files changed, 13 insertions, 6 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index a0718768996..63fb4667cd1 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12006-02-08 Peter Doornbosch <peter.doornbosch@luminis.nl> (tiny change)
2
3 * vc-svn.el (vc-svn-print-log): Show recent commits as well.
4
12006-02-09 Juanma Barranquero <lekktu@gmail.com> 52006-02-09 Juanma Barranquero <lekktu@gmail.com>
2 6
3 * hilit-chg.el (hilit-chg-update-all-buffers): Use `mapc' instead of 7 * hilit-chg.el (hilit-chg-update-all-buffers): Use `mapc' instead of
@@ -10,8 +14,8 @@
10 14
112006-02-08 Ryan Yeske <rcyeske@gmail.com> 152006-02-08 Ryan Yeske <rcyeske@gmail.com>
12 16
13 * net/rcirc.el (rcirc-startup-channels-alist): Add 17 * net/rcirc.el (rcirc-startup-channels-alist):
14 irc.freenode.net and #emacs as defaults. 18 Add irc.freenode.net and #emacs as defaults.
15 (rcirc-ignore-all-activity-flag): Remove variable. 19 (rcirc-ignore-all-activity-flag): Remove variable.
16 (rcirc-authinfo): New variable. 20 (rcirc-authinfo): New variable.
17 (rcirc-authinfo-filename): Remove variable. 21 (rcirc-authinfo-filename): Remove variable.
@@ -31,9 +35,8 @@
31 messages. 35 messages.
32 (rcirc-user-nick): Save match data. 36 (rcirc-user-nick): Save match data.
33 (rcirc-toggle-ignore-buffer-activity) 37 (rcirc-toggle-ignore-buffer-activity)
34 (rcirc-update-activity-string): Remove global ignore 38 (rcirc-update-activity-string): Remove global ignore functionality,
35 functionality, which can be done now by toggling 39 which can be done now by toggling rcirc-track-minor-mode.
36 rcirc-track-minor-mode.
37 (rcirc-track-minor-mode-map): New keymap. 40 (rcirc-track-minor-mode-map): New keymap.
38 (rcirc-track-minor-mode): New minor-mode. 41 (rcirc-track-minor-mode): New minor-mode.
39 (ignore): Make the ignore output nicer. Always print it when 42 (ignore): Make the ignore output nicer. Always print it when
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."
370 (vc-svn-command 370 (vc-svn-command
371 buffer 371 buffer
372 (if (and (vc-stay-local-p file) (fboundp 'start-process)) 'async 0) 372 (if (and (vc-stay-local-p file) (fboundp 'start-process)) 'async 0)
373 file "log"))) 373 file "log"
374 ;; By default Subversion only shows the log upto the working version,
375 ;; whereas we also want the log of the subsequent commits. At least
376 ;; that's what the vc-cvs.el code does.
377 "-rHEAD:0")))
374 378
375(defun vc-svn-diff (file &optional oldvers newvers buffer) 379(defun vc-svn-diff (file &optional oldvers newvers buffer)
376 "Get a difference report using SVN between two versions of FILE." 380 "Get a difference report using SVN between two versions of FILE."