diff options
author | Dan Nicolaescu <dann@ics.uci.edu> | 2009-11-16 20:36:06 +0000 |
---|---|---|
committer | Dan Nicolaescu <dann@ics.uci.edu> | 2009-11-16 20:36:06 +0000 |
commit | 48b27575344c9352bd4eab19fa1a17f97fb21dda (patch) | |
tree | 6b1b79cdf6fa63557698544af9d28598531ea556 /lisp/vc-rcs.el | |
parent | d3e971853d5d29230315e08421a3ccd6870886b3 (diff) | |
download | emacs-48b27575344c9352bd4eab19fa1a17f97fb21dda.tar.gz |
* vc.el (vc-log-show-limit): Default to 2000.
(vc-print-log-internal): Insert buttons to request more entries
when limiting the output.
* vc-sccs.el (vc-sccs-print-log):
* vc-rcs.el (vc-rcs-print-log):
* vc-cvs.el (vc-cvs-print-log):
* vc-git.el (vc-git-print-log): Return 'limit-unsupported when
LIMIT is non-nil.
Diffstat (limited to 'lisp/vc-rcs.el')
-rw-r--r-- | lisp/vc-rcs.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/vc-rcs.el b/lisp/vc-rcs.el index 42e2ec30ccf..38573e412d9 100644 --- a/lisp/vc-rcs.el +++ b/lisp/vc-rcs.el @@ -564,7 +564,8 @@ directory the operation is applied to all registered files beneath it." directory the operation is applied to all registered files beneath it." (vc-do-command (or buffer "*vc*") 0 "rlog" (mapcar 'vc-name (vc-expand-dirs files))) (with-current-buffer (or buffer "*vc*") - (vc-rcs-print-log-cleanup))) + (vc-rcs-print-log-cleanup)) + (when limit 'limit-unsupported)) (defun vc-rcs-diff (files &optional oldvers newvers buffer) "Get a difference report using RCS between two sets of files." |