summaryrefslogtreecommitdiff
path: root/lisp/vc
diff options
context:
space:
mode:
authorDmitry Gutov <dgutov@yandex.ru>2020-02-12 00:19:25 +0200
committerDmitry Gutov <dgutov@yandex.ru>2020-02-12 00:29:40 +0200
commitff4ed4a0ff5929d5ea81a0590ac1a4ca8dfc31ce (patch)
tree38e28a90a6c15c333392954ed94440bc9f7af9f9 /lisp/vc
parent3a5129a1c963d66a1b2e6db27e1063d171e8ae0c (diff)
downloademacs-ff4ed4a0ff5929d5ea81a0590ac1a4ca8dfc31ce.tar.gz
; Add a TODO
Diffstat (limited to 'lisp/vc')
-rw-r--r--lisp/vc/vc-hg.el3
1 files changed, 3 insertions, 0 deletions
diff --git a/lisp/vc/vc-hg.el b/lisp/vc/vc-hg.el
index a91e1f5ad6c..d00b69c0d08 100644
--- a/lisp/vc/vc-hg.el
+++ b/lisp/vc/vc-hg.el
@@ -1356,6 +1356,9 @@ REV is the revision to check out into WORKFILE."
;; XXX: We can't pass DIR directly to 'hg status' because that
;; returns all ignored files if FILES is non-nil (bug#22481).
(let ((default-directory dir))
+ ;; TODO: Use "--config 'status.relative=1'" instead of "re:"
+ ;; when we're allowed to depend on Mercurial 4.2+
+ ;; (it's a bit faster).
(vc-hg-command (current-buffer) 'async files
"status" "re:" "-I" "."
(concat "-mardu" (if files "i"))