aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/ChangeLog
diff options
context:
space:
mode:
authorDan Nicolaescu2009-11-15 20:28:58 +0000
committerDan Nicolaescu2009-11-15 20:28:58 +0000
commit6616006b025a584a907e70dfffe54f65fc89e058 (patch)
treed1c2d9a0919cd070081cd22b2ce3ddb7d4419297 /lisp/ChangeLog
parentf8e65267070633b270e2edf46bd9b521168e5358 (diff)
downloademacs-6616006b025a584a907e70dfffe54f65fc89e058.tar.gz
emacs-6616006b025a584a907e70dfffe54f65fc89e058.zip
* vc.el (vc-log-show-limit): New variable.
(vc-print-log, vc-print-root-log): Add new argument LIMIT. Set it when using a prefix argument. (vc-print-log-internal): Add new argument LIMIT. * vc-svn.el (vc-svn-print-log): * vc-mtn.el (vc-mtn-print-log): * vc-hg.el (vc-hg-print-log): * vc-bzr.el (vc-bzr-print-log): Add new optional argument LIMIT, pass it to the log command when set. Make the BUFFER argument non-optional. * vc-sccs.el (vc-sccs-print-log): * vc-rcs.el (vc-rcs-print-log): * vc-git.el (vc-git-print-log): * vc-cvs.el (vc-cvs-print-log): Add new optional argument LIMIT, ignore it. Make the BUFFER argument non-optional
Diffstat (limited to 'lisp/ChangeLog')
-rw-r--r--lisp/ChangeLog18
1 files changed, 18 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index c0860179da1..876e48db9fd 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,23 @@
12009-11-15 Dan Nicolaescu <dann@ics.uci.edu> 12009-11-15 Dan Nicolaescu <dann@ics.uci.edu>
2 2
3 * vc.el (vc-log-show-limit): New variable.
4 (vc-print-log, vc-print-root-log): Add new argument LIMIT. Set it
5 when using a prefix argument.
6 (vc-print-log-internal): Add new argument LIMIT.
7
8 * vc-svn.el (vc-svn-print-log):
9 * vc-mtn.el (vc-mtn-print-log):
10 * vc-hg.el (vc-hg-print-log):
11 * vc-bzr.el (vc-bzr-print-log): Add new optional argument LIMIT,
12 pass it to the log command when set. Make the BUFFER argument
13 non-optional.
14
15 * vc-sccs.el (vc-sccs-print-log):
16 * vc-rcs.el (vc-rcs-print-log):
17 * vc-git.el (vc-git-print-log):
18 * vc-cvs.el (vc-cvs-print-log): Add new optional argument LIMIT,
19 ignore it. Make the BUFFER argument non-optional
20
3 * bindings.el (mode-line-buffer-identification): Do not purecopy. 21 * bindings.el (mode-line-buffer-identification): Do not purecopy.
4 22
52009-11-15 Chong Yidong <cyd@stupidchicken.com> 232009-11-15 Chong Yidong <cyd@stupidchicken.com>