diff lisp/vc-git.el @ 106060:2f9ecf376c7a

* 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.
author Dan Nicolaescu <dann@ics.uci.edu>
date Mon, 16 Nov 2009 20:36:06 +0000
parents 2bed02fa3041
children a88a54e96796
line wrap: on
line diff
--- a/lisp/vc-git.el	Mon Nov 16 20:10:39 2009 +0000
+++ b/lisp/vc-git.el	Mon Nov 16 20:36:06 2009 +0000
@@ -526,7 +526,8 @@
 			    "--")
 	  (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)