changeset 93176:c985261aee9c

* vc-hg.el (vc-hg-after-dir-status): * vc-bzr.el (vc-bzr-after-dir-status): Detect missing files.
author Dan Nicolaescu <dann@ics.uci.edu>
date Mon, 24 Mar 2008 08:47:06 +0000
parents 7b2ec9fec56e
children 470ea273abbf
files lisp/ChangeLog lisp/vc-bzr.el lisp/vc-hg.el
diffstat 3 files changed, 5 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/ChangeLog	Mon Mar 24 08:36:22 2008 +0000
+++ b/lisp/ChangeLog	Mon Mar 24 08:47:06 2008 +0000
@@ -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.
 
--- a/lisp/vc-bzr.el	Mon Mar 24 08:36:22 2008 +0000
+++ b/lisp/vc-bzr.el	Mon Mar 24 08:47:06 2008 +0000
@@ -617,7 +617,7 @@
 		       ("-D" . removed)
 		       (" M" . edited)
 		       ;; XXX: what about ignored files?
-		       (" D" . deleted)
+		       (" D" . missing)
 		       ("? " . unregistered)))
 	(translated nil)
 	(result nil))
--- a/lisp/vc-hg.el	Mon Mar 24 08:36:22 2008 +0000
+++ b/lisp/vc-hg.el	Mon Mar 24 08:47:06 2008 +0000
@@ -482,7 +482,7 @@
 		       (?R . removed)
 		       (?M . edited)
 		       (?I . ignored)
-		       (?! . deleted)
+		       (?! . missing)
 		       (?? . unregistered)))
 	(translated nil)
 	  (result nil))