emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] master a215fe8 2/2: vc-hg: Perform the print-log call asyn


From: Dmitry Gutov
Subject: [Emacs-diffs] master a215fe8 2/2: vc-hg: Perform the print-log call asynchronously
Date: Sun, 19 Jul 2015 17:51:47 +0000

branch: master
commit a215fe8a8dc4529982885f3a2347a1984f1c4bc2
Author: Dmitry Gutov <address@hidden>
Commit: Dmitry Gutov <address@hidden>

    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 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/lisp/vc/vc-hg.el b/lisp/vc/vc-hg.el
index 556174a..f634e2e 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)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]