aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Nicolaescu2007-12-01 18:18:47 +0000
committerDan Nicolaescu2007-12-01 18:18:47 +0000
commitff71e76d0391c44f1a16f93ba1b363230417634c (patch)
tree82a219e119dc79e4a75d38fbbd2f6b5ae944d6e3
parent1fa1687718e936c8a7b305361d94a89cc64d91cb (diff)
downloademacs-ff71e76d0391c44f1a16f93ba1b363230417634c.tar.gz
emacs-ff71e76d0391c44f1a16f93ba1b363230417634c.zip
* vc-git.el (vc-git-dir-state): Fix the git command arguments.
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/vc-git.el2
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 @@
12007-12-01 Alexandre Julliard <julliard@winehq.org>
2
3 * vc-git.el (vc-git-dir-state): Fix the git command arguments.
4
12007-11-30 Stefan Monnier <monnier@iro.umontreal.ca> 52007-11-30 Stefan Monnier <monnier@iro.umontreal.ca>
2 6
3 * progmodes/perl-mode.el (perl-font-lock-syntactic-keywords): 7 * 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 @@
151 151
152(defun vc-git-dir-state (dir) 152(defun vc-git-dir-state (dir)
153 (with-temp-buffer 153 (with-temp-buffer
154 (vc-git-command (current-buffer) nil nil "ls-files" "-t") 154 (vc-git-command (current-buffer) nil nil "ls-files" "-t" "-c" "-m" "-o")
155 (goto-char (point-min)) 155 (goto-char (point-min))
156 (let ((status-char nil) 156 (let ((status-char nil)
157 (file nil)) 157 (file nil))