]> git.eshelyaron.com Git - emacs.git/commitdiff
* vc-hg.el (vc-hg-dir-status): Don't pass -A to "hg status".
authorDan Nicolaescu <dann@ics.uci.edu>
Wed, 9 Jan 2008 05:15:07 +0000 (05:15 +0000)
committerDan Nicolaescu <dann@ics.uci.edu>
Wed, 9 Jan 2008 05:15:07 +0000 (05:15 +0000)
lisp/ChangeLog
lisp/vc-hg.el

index b24807e36b4de60f79c19ef30e01cb99872a970b..eac75b01c7fe901ca80189af2ca70ec068345d17 100644 (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
index 597c49aaa3fe673cd6a9b651208b6203b26a252b..fe441d984f7a5235b862920a13be866421dfca08 100644 (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)