changeset 82361:be079227e4e1

(cvs-parse-table): Handle additional instance of optional quotes around files in NEED-UPDATE . REMOVED case.
author Juanma Barranquero <lekktu@gmail.com>
date Mon, 13 Aug 2007 10:41:40 +0000
parents cb141f698420
children 8d7512ea727b
files lisp/pcvs-parse.el
diffstat 1 files changed, 2 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/pcvs-parse.el	Mon Aug 13 06:30:11 2007 +0000
+++ b/lisp/pcvs-parse.el	Mon Aug 13 10:41:40 2007 +0000
@@ -284,6 +284,8 @@
        ;; File removed, since it is removed (by third party) in repository.
        (and
 	(cvs-or
+         ;; some cvs versions output quotes around these files
+	 (cvs-match "warning: `\\(.*\\)' is not (any longer) pertinent$" (file 1))
 	 (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)))