# HG changeset patch # User Dan Nicolaescu # Date 1196533127 0 # Node ID 5f49af3d292bcab0824aa55dd0dad23ff18ffd55 # Parent e3d4afef9665cdbc3758b6e8c510f3573bd433c7 * vc-git.el (vc-git-dir-state): Fix the git command arguments. diff -r e3d4afef9665 -r 5f49af3d292b lisp/ChangeLog --- a/lisp/ChangeLog Sat Dec 01 13:00:16 2007 +0000 +++ b/lisp/ChangeLog Sat Dec 01 18:18:47 2007 +0000 @@ -1,3 +1,7 @@ +2007-12-01 Alexandre Julliard + + * vc-git.el (vc-git-dir-state): Fix the git command arguments. + 2007-11-30 Stefan Monnier * progmodes/perl-mode.el (perl-font-lock-syntactic-keywords): diff -r e3d4afef9665 -r 5f49af3d292b lisp/vc-git.el --- a/lisp/vc-git.el Sat Dec 01 13:00:16 2007 +0000 +++ b/lisp/vc-git.el Sat Dec 01 18:18:47 2007 +0000 @@ -151,7 +151,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))