From a215fe8a8dc4529982885f3a2347a1984f1c4bc2 Mon Sep 17 00:00:00 2001 From: Dmitry Gutov Date: Sun, 19 Jul 2015 20:49:59 +0300 Subject: [PATCH] vc-hg: Perform the print-log call asynchronously * lisp/vc/vc-hg.el (vc-hg-print-log): Perform the call asynchronously (bug#21067). --- lisp/vc/vc-hg.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/vc/vc-hg.el b/lisp/vc/vc-hg.el index 556174a3821..f634e2eac53 100644 --- a/lisp/vc/vc-hg.el +++ b/lisp/vc/vc-hg.el @@ -272,7 +272,7 @@ If LIMIT is non-nil, show no more than this many entries." (let ((inhibit-read-only t)) (with-current-buffer buffer - (apply 'vc-hg-command buffer 0 files "log" + (apply 'vc-hg-command buffer 'async files "log" (nconc (when start-revision (list (format "-r%s:0" start-revision))) (when limit (list "-l" (format "%s" limit))) -- 2.11.4.GIT