# HG changeset patch # User Dan Nicolaescu # Date 1196320921 0 # Node ID 7c0a55a957d0d69bce83e7d0ee9de8c7fdad4ad9 # Parent d9f3c50440dcd6e89e99f0dbe03df30dddae616e * vc-git.el (vc-git-dir-state): Fix the git command arguments. diff -r d9f3c50440dc -r 7c0a55a957d0 lisp/ChangeLog --- a/lisp/ChangeLog Thu Nov 29 04:47:41 2007 +0000 +++ b/lisp/ChangeLog Thu Nov 29 07:22:01 2007 +0000 @@ -1,3 +1,7 @@ +2007-11-29 Alexandre Julliard + + * vc-git.el (vc-git-dir-state): Fix the git command arguments. + 2007-11-29 Ari Roponen (tiny change) * calendar/time-date.el (encode-time-value): Doc fix. diff -r d9f3c50440dc -r 7c0a55a957d0 lisp/vc-git.el --- a/lisp/vc-git.el Thu Nov 29 04:47:41 2007 +0000 +++ b/lisp/vc-git.el Thu Nov 29 07:22:01 2007 +0000 @@ -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))