diff options
author | Dmitry Gutov <dgutov@yandex.ru> | 2015-07-19 20:49:59 +0300 |
---|---|---|
committer | Dmitry Gutov <dgutov@yandex.ru> | 2015-07-19 20:51:28 +0300 |
commit | a215fe8a8dc4529982885f3a2347a1984f1c4bc2 (patch) | |
tree | 7f1920d0a9d6bda5e816dedba967c44ba16530d2 | |
parent | 50ad176d2868a6bc622014ebe49b5bad45d0372c (diff) | |
download | emacs-a215fe8a8dc4529982885f3a2347a1984f1c4bc2.tar.gz |
vc-hg: Perform the print-log call asynchronously
* lisp/vc/vc-hg.el (vc-hg-print-log): Perform the call
asynchronously (bug#21067).
-rw-r--r-- | 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 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))) |