]> git.eshelyaron.com Git - emacs.git/commitdiff
Make vc-hg-annotate-command async
authorSpencer Baugh <sbaugh@janestreet.com>
Thu, 27 Apr 2023 16:11:45 +0000 (12:11 -0400)
committerDmitry Gutov <dmitry@gutov.dev>
Thu, 4 May 2023 23:42:49 +0000 (02:42 +0300)
There's no benefit in this running the process synchrounously, and
it's annoying for it to block the Emacs UI.

* lisp/vc/vc-hg.el (vc-hg-annotate-command):
Run asynchronously (bug#63123).

lisp/vc/vc-hg.el

index 5bab9aa529e84bd19762ba0cc20be83c05314a4a..78480fd80620832deb1b478a5abdc079d6231fe4 100644 (file)
@@ -578,7 +578,7 @@ This requires hg 4.4 or later, for the \"-L\" option of \"hg log\"."
 (defun vc-hg-annotate-command (file buffer &optional revision)
   "Execute \"hg annotate\" on FILE, inserting the contents in BUFFER.
 Optional arg REVISION is a revision to annotate from."
-  (apply #'vc-hg-command buffer 0 file "annotate" "-dq" "-n"
+  (apply #'vc-hg-command buffer 'async file "annotate" "-dq" "-n"
         (append (vc-switches 'hg 'annotate)
                  (if revision (list (concat "-r" revision))))))