1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-26 07:33:47 +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 11:37:50 +00:00
parent cdf71ff2ef
commit a6631b3a5c

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