diff options
| author | Dan Nicolaescu | 2007-11-29 07:22:01 +0000 |
|---|---|---|
| committer | Dan Nicolaescu | 2007-11-29 07:22:01 +0000 |
| commit | 8d6d388da3474f4df69b70aef4b7e32a17677bde (patch) | |
| tree | 73523aff11148bea35a11821a7b33ff52ac6dcc6 | |
| parent | 9c15b1e7f176c730ae57276e6ab01bc51c61a978 (diff) | |
| download | emacs-8d6d388da3474f4df69b70aef4b7e32a17677bde.tar.gz emacs-8d6d388da3474f4df69b70aef4b7e32a17677bde.zip | |
* vc-git.el (vc-git-dir-state): Fix the git command arguments.
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/vc-git.el | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 19f2ce602b6..e8a3bd526bc 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2007-11-29 Alexandre Julliard <julliard@winehq.org> | ||
| 2 | |||
| 3 | * vc-git.el (vc-git-dir-state): Fix the git command arguments. | ||
| 4 | |||
| 1 | 2007-11-29 Ari Roponen <ari.roponen@gmail.com> (tiny change) | 5 | 2007-11-29 Ari Roponen <ari.roponen@gmail.com> (tiny change) |
| 2 | 6 | ||
| 3 | * calendar/time-date.el (encode-time-value): Doc fix. | 7 | * calendar/time-date.el (encode-time-value): Doc fix. |
diff --git a/lisp/vc-git.el b/lisp/vc-git.el index 1d0297209b5..6fd6849281b 100644 --- a/lisp/vc-git.el +++ b/lisp/vc-git.el | |||
| @@ -152,7 +152,7 @@ | |||
| 152 | 152 | ||
| 153 | (defun vc-git-dir-state (dir) | 153 | (defun vc-git-dir-state (dir) |
| 154 | (with-temp-buffer | 154 | (with-temp-buffer |
| 155 | (vc-git-command (current-buffer) nil nil "ls-files" "-t") | 155 | (vc-git-command (current-buffer) nil nil "ls-files" "-t" "-c" "-m" "-o") |
| 156 | (goto-char (point-min)) | 156 | (goto-char (point-min)) |
| 157 | (let ((status-char nil) | 157 | (let ((status-char nil) |
| 158 | (file nil)) | 158 | (file nil)) |