]> git.eshelyaron.com Git - emacs.git/commitdiff
* vc-hg.el (vc-hg-after-dir-status):
authorDan Nicolaescu <dann@ics.uci.edu>
Mon, 24 Mar 2008 08:47:06 +0000 (08:47 +0000)
committerDan Nicolaescu <dann@ics.uci.edu>
Mon, 24 Mar 2008 08:47:06 +0000 (08:47 +0000)
* vc-bzr.el (vc-bzr-after-dir-status): Detect missing files.

lisp/ChangeLog
lisp/vc-bzr.el
lisp/vc-hg.el

index 05a5904e2ecc065ea8e14d616818583db6ddd940..013080db8ccc29c6fad0d4c112fdc9d5a4c18ed8 100644 (file)
@@ -1,5 +1,8 @@
 2008-03-24  Dan Nicolaescu  <dann@ics.uci.edu>
 
+       * vc-hg.el (vc-hg-after-dir-status):
+       * vc-bzr.el (vc-bzr-after-dir-status): Detect missing files.
+
        * vc-cvs.el (vc-cvs-after-dir-status, vc-cvs-parse-status): Detect
        removed files.
 
index f44670e7bc356cf1047cd0420a6689765a2fc353..9fbf7b86dec31f6746d3016f2fddc1a767ef4c16 100644 (file)
@@ -617,7 +617,7 @@ Optional argument LOCALP is always ignored."
                       ("-D" . removed)
                       (" M" . edited)
                       ;; XXX: what about ignored files?
-                      (" D" . deleted)
+                      (" D" . missing)
                       ("? " . unregistered)))
        (translated nil)
        (result nil))
index dca6449e0c4442b7fc36e9493a6b4540666bf109..ac87336d5d76fb5193a4af87254754a2a1aafd02 100644 (file)
@@ -482,7 +482,7 @@ REV is the revision to check out into WORKFILE."
                       (?R . removed)
                       (?M . edited)
                       (?I . ignored)
-                      (?! . deleted)
+                      (?! . missing)
                       (?? . unregistered)))
        (translated nil)
          (result nil))