diff options
author | Dan Nicolaescu <dann@ics.uci.edu> | 2007-12-01 18:18:47 +0000 |
---|---|---|
committer | Dan Nicolaescu <dann@ics.uci.edu> | 2007-12-01 18:18:47 +0000 |
commit | ff71e76d0391c44f1a16f93ba1b363230417634c (patch) | |
tree | 82a219e119dc79e4a75d38fbbd2f6b5ae944d6e3 /lisp | |
parent | 1fa1687718e936c8a7b305361d94a89cc64d91cb (diff) | |
download | emacs-ff71e76d0391c44f1a16f93ba1b363230417634c.tar.gz emacs-ff71e76d0391c44f1a16f93ba1b363230417634c.tar.bz2 emacs-ff71e76d0391c44f1a16f93ba1b363230417634c.zip |
* vc-git.el (vc-git-dir-state): Fix the git command arguments.
Diffstat (limited to 'lisp')
-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 f54280e5651..e21b1d2def9 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2007-12-01 Alexandre Julliard <julliard@winehq.org> + + * vc-git.el (vc-git-dir-state): Fix the git command arguments. + 2007-11-30 Stefan Monnier <monnier@iro.umontreal.ca> * progmodes/perl-mode.el (perl-font-lock-syntactic-keywords): diff --git a/lisp/vc-git.el b/lisp/vc-git.el index 88946f160ff..be5bbcfe43e 100644 --- a/lisp/vc-git.el +++ b/lisp/vc-git.el @@ -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)) |