From: Dmitry Gutov Date: Sun, 19 Jul 2015 17:49:59 +0000 (+0300) Subject: vc-hg: Perform the print-log call asynchronously X-Git-Tag: emacs-25.0.90~1463 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=a215fe8a8dc4529982885f3a2347a1984f1c4bc2;p=emacs.git vc-hg: Perform the print-log call asynchronously * lisp/vc/vc-hg.el (vc-hg-print-log): Perform the call asynchronously (bug#21067). --- 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)))