1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-30 08:09:04 +00:00

(cvs-parse-table): Handle additional instance of optional quotes

around files in NEED-UPDATE . REMOVED case.
This commit is contained in:
Juanma Barranquero 2007-08-13 10:41:40 +00:00
parent 81d13a51b4
commit 340b58d384

View 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)))