aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/vc/vc-hg.el2
1 files changed, 2 insertions, 0 deletions
diff --git a/lisp/vc/vc-hg.el b/lisp/vc/vc-hg.el
index 5ff1a6204b1..c9407b1b597 100644
--- a/lisp/vc/vc-hg.el
+++ b/lisp/vc/vc-hg.el
@@ -432,6 +432,8 @@ If LIMIT is non-nil, show no more than this many entries."
432 (nconc 432 (nconc
433 (when start-revision (list (format "-r%s:0" start-revision))) 433 (when start-revision (list (format "-r%s:0" start-revision)))
434 (when limit (list "-l" (format "%s" limit))) 434 (when limit (list "-l" (format "%s" limit)))
435 (when (eq vc-log-view-type 'with-diff)
436 (list "-p"))
435 (if shortlog 437 (if shortlog
436 `(,@(if vc-hg-log-graph '("--graph")) 438 `(,@(if vc-hg-log-graph '("--graph"))
437 "--template" 439 "--template"