]> git.eshelyaron.com Git - emacs.git/commitdiff
* vc-git.el (vc-git-dir-state): Fix the git command arguments.
authorDan Nicolaescu <dann@ics.uci.edu>
Thu, 29 Nov 2007 07:22:01 +0000 (07:22 +0000)
committerDan Nicolaescu <dann@ics.uci.edu>
Thu, 29 Nov 2007 07:22:01 +0000 (07:22 +0000)
lisp/ChangeLog
lisp/vc-git.el

index 19f2ce602b697feb17cd8a958f02ab60baf15b0a..e8a3bd526bc928054fee3ed07f7fd29caa4fb900 100644 (file)
@@ -1,3 +1,7 @@
+2007-11-29  Alexandre Julliard  <julliard@winehq.org>
+
+       * vc-git.el (vc-git-dir-state): Fix the git command arguments.
+
 2007-11-29  Ari Roponen  <ari.roponen@gmail.com>  (tiny change)
 
        * calendar/time-date.el (encode-time-value): Doc fix.
index 1d0297209b51f5ed022cc076b3b01ec5823e9475..6fd6849281bbdd009b0d48bd036df5d523f79aa3 100644 (file)
 
 (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))