[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] Changes to emacs/lisp/vc-git.el,v [EMACS_22_BASE]
From: |
Dan Nicolaescu |
Subject: |
[Emacs-diffs] Changes to emacs/lisp/vc-git.el,v [EMACS_22_BASE] |
Date: |
Fri, 04 Jan 2008 07:59:29 +0000 |
CVSROOT: /cvsroot/emacs
Module name: emacs
Branch: EMACS_22_BASE
Changes by: Dan Nicolaescu <dann> 08/01/04 07:59:28
Index: vc-git.el
===================================================================
RCS file: /cvsroot/emacs/emacs/lisp/vc-git.el,v
retrieving revision 1.18.2.8
retrieving revision 1.18.2.9
diff -u -b -r1.18.2.8 -r1.18.2.9
--- vc-git.el 1 Dec 2007 18:18:46 -0000 1.18.2.8
+++ vc-git.el 4 Jan 2008 07:59:24 -0000 1.18.2.9
@@ -167,10 +167,13 @@
;; should not show up in vc-dired, so don't deal with them
;; here.
((eq status-char ?H)
+ (vc-file-setprop file 'vc-backend 'Git)
(vc-file-setprop file 'vc-state 'up-to-date))
((eq status-char ?M)
+ (vc-file-setprop file 'vc-backend 'Git)
(vc-file-setprop file 'vc-state 'edited))
((eq status-char ?C)
+ (vc-file-setprop file 'vc-backend 'Git)
(vc-file-setprop file 'vc-state 'edited))
((eq status-char ??)
(vc-file-setprop file 'vc-backend 'none)
- [Emacs-diffs] Changes to emacs/lisp/vc-git.el,v [EMACS_22_BASE],
Dan Nicolaescu <=