1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-07 15:21:46 +00:00

* vc-hg.el (vc-hg-dir-status): Don't pass -A to "hg status".

This commit is contained in:
Dan Nicolaescu 2008-01-09 05:15:07 +00:00
parent 85032f0f3c
commit 15b18fea81
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2008-01-09 Tom Tromey <tromey@redhat.com>
* vc-hg.el (vc-hg-dir-status): Don't pass -A to "hg status".
2008-01-09 Glenn Morris <rgm@gnu.org>
* ffap.el (ffap-string-at-point-mode-alist): Add `\' to file

View File

@ -485,7 +485,7 @@ REV is the revision to check out into WORKFILE."
(defun vc-hg-dir-status (dir)
"Return a list of conses (file . state) for DIR."
(with-temp-buffer
(vc-hg-command (current-buffer) nil dir "status" "-A")
(vc-hg-command (current-buffer) nil dir "status")
(goto-char (point-min))
(let ((status-char nil)
(file nil)