From: Stefan Monnier Date: Thu, 17 Aug 2006 14:53:09 +0000 (+0000) Subject: (cvs-parse-table): Accept the new `...' format for removed files. X-Git-Tag: emacs-pretest-22.0.90~968 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=bce848ed515d75ccc24c7ea54b7ac72dbba6a630;p=emacs.git (cvs-parse-table): Accept the new `...' format for removed files. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index d703ee7cbba..4234fdc3d44 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2006-08-17 Stefan Monnier + + * pcvs-parse.el (cvs-parse-table): Accept the new `...' format for + removed files. + 2006-08-17 Nick Roberts * progmodes/gdb-ui.el (gdb-locals-watch-map) diff --git a/lisp/pcvs-parse.el b/lisp/pcvs-parse.el index 0193939606c..bd493126532 100644 --- a/lisp/pcvs-parse.el +++ b/lisp/pcvs-parse.el @@ -285,7 +285,8 @@ The remaining KEYS are passed directly to `cvs-create-fileinfo'." (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))