From 15b18fea8169cce339f2f792ce1eee44d2de03e0 Mon Sep 17 00:00:00 2001 From: Dan Nicolaescu Date: Wed, 9 Jan 2008 05:15:07 +0000 Subject: [PATCH] * vc-hg.el (vc-hg-dir-status): Don't pass -A to "hg status". --- lisp/ChangeLog | 4 ++++ lisp/vc-hg.el | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index b24807e36b4..eac75b01c7f 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2008-01-09 Tom Tromey + + * vc-hg.el (vc-hg-dir-status): Don't pass -A to "hg status". + 2008-01-09 Glenn Morris * ffap.el (ffap-string-at-point-mode-alist): Add `\' to file 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) -- 2.39.5