1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-27 07:37:33 +00:00

(vc-hg-dir-state): Deal with the up-to-date state.

This commit is contained in:
Dan Nicolaescu 2007-12-29 05:54:23 +00:00
parent 13eb7df084
commit 85933f0aef
2 changed files with 6 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2007-12-29 Dan Nicolaescu <dann@ics.uci.edu>
* vc-hg.el (vc-hg-dir-state): Deal with the up-to-date state.
2007-12-29 Jay Belanger <jay.p.belanger@gmail.com>
* calc/calc-aent.el (math-read-token): Fix misplaced

View File

@ -199,6 +199,8 @@
;; ! = deleted, but still tracked
;; should not show up in vc-dired, so don't deal with them
;; here.
((eq status-char ?C)
(vc-file-setprop file 'vc-state 'up-to-date))
((eq status-char ?A)
(vc-file-setprop file 'vc-working-revision "0")
(vc-file-setprop file 'vc-state 'edited))