diff options
| author | Dan Nicolaescu | 2008-01-09 05:15:07 +0000 |
|---|---|---|
| committer | Dan Nicolaescu | 2008-01-09 05:15:07 +0000 |
| commit | 15b18fea8169cce339f2f792ce1eee44d2de03e0 (patch) | |
| tree | 745de9fde1b361fc8898995509b88be90a31d04b | |
| parent | 85032f0f3ca0355dcf7a4f76e94fc4440c0b7558 (diff) | |
| download | emacs-15b18fea8169cce339f2f792ce1eee44d2de03e0.tar.gz emacs-15b18fea8169cce339f2f792ce1eee44d2de03e0.zip | |
* vc-hg.el (vc-hg-dir-status): Don't pass -A to "hg status".
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/vc-hg.el | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index b24807e36b4..eac75b01c7f 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2008-01-09 Tom Tromey <tromey@redhat.com> | ||
| 2 | |||
| 3 | * vc-hg.el (vc-hg-dir-status): Don't pass -A to "hg status". | ||
| 4 | |||
| 1 | 2008-01-09 Glenn Morris <rgm@gnu.org> | 5 | 2008-01-09 Glenn Morris <rgm@gnu.org> |
| 2 | 6 | ||
| 3 | * ffap.el (ffap-string-at-point-mode-alist): Add `\' to file | 7 | * 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." | |||
| 485 | (defun vc-hg-dir-status (dir) | 485 | (defun vc-hg-dir-status (dir) |
| 486 | "Return a list of conses (file . state) for DIR." | 486 | "Return a list of conses (file . state) for DIR." |
| 487 | (with-temp-buffer | 487 | (with-temp-buffer |
| 488 | (vc-hg-command (current-buffer) nil dir "status" "-A") | 488 | (vc-hg-command (current-buffer) nil dir "status") |
| 489 | (goto-char (point-min)) | 489 | (goto-char (point-min)) |
| 490 | (let ((status-char nil) | 490 | (let ((status-char nil) |
| 491 | (file nil) | 491 | (file nil) |