summaryrefslogtreecommitdiff
path: root/lisp/vc-git.el
diff options
context:
space:
mode:
authorDan Nicolaescu <dann@ics.uci.edu>2007-11-29 07:22:01 +0000
committerDan Nicolaescu <dann@ics.uci.edu>2007-11-29 07:22:01 +0000
commit8d6d388da3474f4df69b70aef4b7e32a17677bde (patch)
tree73523aff11148bea35a11821a7b33ff52ac6dcc6 /lisp/vc-git.el
parent9c15b1e7f176c730ae57276e6ab01bc51c61a978 (diff)
downloademacs-8d6d388da3474f4df69b70aef4b7e32a17677bde.tar.gz
* vc-git.el (vc-git-dir-state): Fix the git command arguments.
Diffstat (limited to 'lisp/vc-git.el')
-rw-r--r--lisp/vc-git.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/vc-git.el b/lisp/vc-git.el
index 1d0297209b5..6fd6849281b 100644
--- a/lisp/vc-git.el
+++ b/lisp/vc-git.el
@@ -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))