]> git.eshelyaron.com Git - emacs.git/commitdiff
(cvs-parse-table): Handle additional instance of optional quotes
authorJuanma Barranquero <lekktu@gmail.com>
Mon, 13 Aug 2007 11:37:50 +0000 (11:37 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Mon, 13 Aug 2007 11:37:50 +0000 (11:37 +0000)
around files in NEED-UPDATE . REMOVED case.

lisp/pcvs-parse.el

index c26a27ed00852f0675e8a5f5e741d86f2a86c188..3ca1829030f390f0a0cdd22a1dd9c39dd89b8a53 100644 (file)
@@ -284,6 +284,8 @@ The remaining KEYS are passed directly to `cvs-create-fileinfo'."
        ;; 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)))