summaryrefslogtreecommitdiff
path: root/lisp/pcvs-parse.el
diff options
context:
space:
mode:
authorJuanma Barranquero <lekktu@gmail.com>2007-08-13 10:41:40 +0000
committerJuanma Barranquero <lekktu@gmail.com>2007-08-13 10:41:40 +0000
commit340b58d3844ba5e1235aecfd6634e4d47394c40b (patch)
tree21a5a55cf9335d20c86db89c518fe01679f75c17 /lisp/pcvs-parse.el
parent81d13a51b43176a47135a2cc84929e5f6af5e7a6 (diff)
downloademacs-340b58d3844ba5e1235aecfd6634e4d47394c40b.tar.gz
(cvs-parse-table): Handle additional instance of optional quotes
around files in NEED-UPDATE . REMOVED case.
Diffstat (limited to 'lisp/pcvs-parse.el')
-rw-r--r--lisp/pcvs-parse.el2
1 files changed, 2 insertions, 0 deletions
diff --git a/lisp/pcvs-parse.el b/lisp/pcvs-parse.el
index c26a27ed008..3ca1829030f 100644
--- a/lisp/pcvs-parse.el
+++ b/lisp/pcvs-parse.el
@@ -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)))