changeset 72430:c5805198a585

(cvs-parse-table): Accept the new `...' format for removed files.
author Stefan Monnier <monnier@iro.umontreal.ca>
date Thu, 17 Aug 2006 14:53:09 +0000
parents ae19dce6b114
children f13889b47192
files lisp/ChangeLog lisp/pcvs-parse.el
diffstat 2 files changed, 7 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/ChangeLog	Thu Aug 17 11:44:40 2006 +0000
+++ b/lisp/ChangeLog	Thu Aug 17 14:53:09 2006 +0000
@@ -1,3 +1,8 @@
+2006-08-17  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+	* pcvs-parse.el (cvs-parse-table): Accept the new `...' format for
+	removed files.
+
 2006-08-17  Nick Roberts  <nickrob@snap.net.nz>
 
 	* progmodes/gdb-ui.el (gdb-locals-watch-map)
--- a/lisp/pcvs-parse.el	Thu Aug 17 11:44:40 2006 +0000
+++ b/lisp/pcvs-parse.el	Thu Aug 17 14:53:09 2006 +0000
@@ -285,7 +285,8 @@
        (and
 	(cvs-or
 	 (cvs-match "warning: \\(.*\\) is not (any longer) pertinent$" (file 1))
-	 (cvs-match "\\(.*\\) is no longer in the repository$" (file 1)))
+	 (cvs-match "`\\(.*\\)' is no longer in the repository$" (file 1))
+         (cvs-match "\\(.*\\) is no longer in the repository$" (file 1)))
 	(cvs-parsed-fileinfo
 	 (if dont-change-disc '(NEED-UPDATE . REMOVED) 'DEAD) file))