]> git.eshelyaron.com Git - emacs.git/commitdiff
vc-hg: Perform the print-log call asynchronously
authorDmitry Gutov <dgutov@yandex.ru>
Sun, 19 Jul 2015 17:49:59 +0000 (20:49 +0300)
committerDmitry Gutov <dgutov@yandex.ru>
Sun, 19 Jul 2015 17:51:28 +0000 (20:51 +0300)
* lisp/vc/vc-hg.el (vc-hg-print-log): Perform the call
asynchronously (bug#21067).

lisp/vc/vc-hg.el

index 556174a38219d33b5fc81853720396d24d92eb31..f634e2eac53fcafe5264144876edb593e6947784 100644 (file)
@@ -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)))