changeset 78542:889170c201e6

(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 11:37:50 +0000
parents 3843f60b914f
children 4e51ba479b3c
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 09:28:31 2007 +0000
+++ b/lisp/pcvs-parse.el	Mon Aug 13 11:37:50 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)))