diff options
author | Dan Nicolaescu <dann@ics.uci.edu> | 2008-01-09 05:15:07 +0000 |
---|---|---|
committer | Dan Nicolaescu <dann@ics.uci.edu> | 2008-01-09 05:15:07 +0000 |
commit | 4e49c852ac546897e8914204d7fa50405d7024fd (patch) | |
tree | 0f397122bb2292d7feb3ed936f4c7ca0503da0bf /lisp/vc-hg.el | |
parent | 401f6e66cf0f9e3ea05739fa74f03684070ef162 (diff) | |
download | emacs-4e49c852ac546897e8914204d7fa50405d7024fd.tar.gz |
* vc-hg.el (vc-hg-dir-status): Don't pass -A to "hg status".
Diffstat (limited to 'lisp/vc-hg.el')
-rw-r--r-- | lisp/vc-hg.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/vc-hg.el b/lisp/vc-hg.el index 597c49aaa3f..fe441d984f7 100644 --- a/lisp/vc-hg.el +++ b/lisp/vc-hg.el @@ -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) |