diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 5c367b49cb8..5798e96c1b3 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,8 @@ 2014-11-24 Dmitry Gutov + * vc/vc-hg.el (vc-hg-dir-status-files): Include ignored files. + (Bug#18579) + * vc/vc-bzr.el (vc-bzr-after-dir-status): Don't skip ignored files. (Bug#18579) diff --git a/lisp/vc/vc-hg.el b/lisp/vc/vc-hg.el index a66fb9f46f9..c8b811feecc 100644 --- a/lisp/vc/vc-hg.el +++ b/lisp/vc/vc-hg.el @@ -628,7 +628,7 @@ REV is the revision to check out into WORKFILE." (vc-hg-after-dir-status update-function))) (defun vc-hg-dir-status-files (dir files _default-state update-function) - (apply 'vc-hg-command (current-buffer) 'async dir "status" "-C" files) + (apply 'vc-hg-command (current-buffer) 'async dir "status" "-mardui" "-C" files) (vc-run-delayed (vc-hg-after-dir-status update-function)))