emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lisp/vc-git.el,v


From: Eric S. Raymond
Subject: [Emacs-diffs] Changes to emacs/lisp/vc-git.el,v
Date: Sat, 29 Dec 2007 13:20:51 +0000

CVSROOT:        /sources/emacs
Module name:    emacs
Changes by:     Eric S. Raymond <esr>   07/12/29 13:20:50

Index: vc-git.el
===================================================================
RCS file: /sources/emacs/emacs/lisp/vc-git.el,v
retrieving revision 1.32
retrieving revision 1.33
diff -u -b -r1.32 -r1.33
--- vc-git.el   28 Dec 2007 18:16:54 -0000      1.32
+++ vc-git.el   29 Dec 2007 13:20:48 -0000      1.33
@@ -168,19 +168,20 @@
                                                (line-end-position))))
        (cond
         ;; The rest of the possible states in "git ls-files -t" output:
-         ;;      R              removed/deleted
         ;;      K              to be killed
         ;; should not show up in vc-dired, so don't deal with them
         ;; here.
         ((eq status-char ?H)
          (vc-file-setprop file 'vc-state 'up-to-date))
+        ((eq status-char ?R)
+         (vc-file-setprop file 'vc-state 'removed))
         ((eq status-char ?M)
          (vc-file-setprop file 'vc-state 'edited))
         ((eq status-char ?C)
          (vc-file-setprop file 'vc-state 'edited))
         ((eq status-char ??)
          (vc-file-setprop file 'vc-backend 'none)
-         (vc-file-setprop file 'vc-state 'nil)))
+         (vc-file-setprop file 'vc-state nil)))
        (forward-line)))))
 
 (defun vc-git-working-revision (file)




reply via email to

[Prev in Thread] Current Thread [Next in Thread]