Mercurial > emacs
changeset 87674:beb524f8ba54
* vc-hg.el (vc-hg-dir-status): Don't pass -A to "hg status".
author | Dan Nicolaescu <dann@ics.uci.edu> |
---|---|
date | Wed, 09 Jan 2008 05:15:07 +0000 |
parents | 2412510a630a |
children | e4a11c2d5016 |
files | lisp/ChangeLog lisp/vc-hg.el |
diffstat | 2 files changed, 5 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/ChangeLog Wed Jan 09 04:59:00 2008 +0000 +++ b/lisp/ChangeLog Wed Jan 09 05:15:07 2008 +0000 @@ -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
--- a/lisp/vc-hg.el Wed Jan 09 04:59:00 2008 +0000 +++ b/lisp/vc-hg.el Wed Jan 09 05:15:07 2008 +0000 @@ -485,7 +485,7 @@ (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)