summaryrefslogtreecommitdiff
path: root/lisp/vc-git.el
diff options
context:
space:
mode:
authorDan Nicolaescu <dann@ics.uci.edu>2009-11-16 20:36:06 +0000
committerDan Nicolaescu <dann@ics.uci.edu>2009-11-16 20:36:06 +0000
commit48b27575344c9352bd4eab19fa1a17f97fb21dda (patch)
tree6b1b79cdf6fa63557698544af9d28598531ea556 /lisp/vc-git.el
parentd3e971853d5d29230315e08421a3ccd6870886b3 (diff)
downloademacs-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-git.el')
-rw-r--r--lisp/vc-git.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/vc-git.el b/lisp/vc-git.el
index c2900dd0b1c..072f708edd7 100644
--- a/lisp/vc-git.el
+++ b/lisp/vc-git.el
@@ -526,7 +526,8 @@ If nil, use the value of `vc-diff-switches'. If t, use no switches."
"--")
(vc-git-command buffer 'async files
"rev-list" ;; "--graph"
- "--pretty" "HEAD" "--"))))))
+ "--pretty" "HEAD" "--")))
+ (when limit 'limit-unsupported))))
(defvar log-view-message-re)
(defvar log-view-file-re)