]> git.eshelyaron.com Git - emacs.git/commitdiff
(vc-hg-dir-state): Deal with the up-to-date state.
authorDan Nicolaescu <dann@ics.uci.edu>
Sat, 29 Dec 2007 05:54:23 +0000 (05:54 +0000)
committerDan Nicolaescu <dann@ics.uci.edu>
Sat, 29 Dec 2007 05:54:23 +0000 (05:54 +0000)
lisp/ChangeLog
lisp/vc-hg.el

index 20e1d0a224bbc20334226a0848ca20f5e9d8e136..a879da74a68ff48dd50a43c1af2ff6f32adefc01 100644 (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
index 41cc883c0a4cd5920edbcb1f65c3fcd70e5fb02a..b3482ddffae872b2308ac1a9565759992f2d3ae5 100644 (file)
         ;;      ! = 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))