* vc-git.el (vc-git-dir-state): Fix the git command arguments.

This commit is contained in:
Dan Nicolaescu 2007-11-29 07:22:01 +00:00
parent 9c15b1e7f1
commit 8d6d388da3
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2007-11-29 Alexandre Julliard <julliard@winehq.org>
* vc-git.el (vc-git-dir-state): Fix the git command arguments.
2007-11-29 Ari Roponen <ari.roponen@gmail.com> (tiny change)
* calendar/time-date.el (encode-time-value): Doc fix.

View file

@ -152,7 +152,7 @@
(defun vc-git-dir-state (dir)
(with-temp-buffer
(vc-git-command (current-buffer) nil nil "ls-files" "-t")
(vc-git-command (current-buffer) nil nil "ls-files" "-t" "-c" "-m" "-o")
(goto-char (point-min))
(let ((status-char nil)
(file nil))