From 1701272fce986317457f42cb4c1425316afec9cc Mon Sep 17 00:00:00 2001 From: Phil Jackson Date: Sun, 25 Apr 2010 19:14:41 +0100 Subject: [PATCH] Fix for appending an explicit number of new log entries. --- magit.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/magit.el b/magit.el index e83a01bb..a83b93f0 100644 --- a/magit.el +++ b/magit.el @@ -3340,7 +3340,7 @@ With a non numeric prefix ARG, show all entries" (make-local-variable 'magit-log-cutoff-length) (cond ((numberp arg) - (setq magit-log-cutoff-length (+ magit-log-cutoff-length added))) + (setq magit-log-cutoff-length (+ magit-log-cutoff-length arg))) (arg (setq magit-log-cutoff-length magit-log-infinite-length)) (t (setq magit-log-cutoff-length (* magit-log-cutoff-length 2))))