diff options
| author | Juanma Barranquero | 2007-08-13 11:37:50 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2007-08-13 11:37:50 +0000 |
| commit | a6631b3a5ca7a53774eb7a98b1a38619ffc92762 (patch) | |
| tree | d862c8cc772010b6890fdfb7db1604222ac9a596 | |
| parent | cdf71ff2ef86e20d8892da4a938a93e1a0c5377b (diff) | |
| download | emacs-a6631b3a5ca7a53774eb7a98b1a38619ffc92762.tar.gz emacs-a6631b3a5ca7a53774eb7a98b1a38619ffc92762.zip | |
(cvs-parse-table): Handle additional instance of optional quotes
around files in NEED-UPDATE . REMOVED case.
| -rw-r--r-- | lisp/pcvs-parse.el | 2 |
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'." | |||
| 284 | ;; File removed, since it is removed (by third party) in repository. | 284 | ;; File removed, since it is removed (by third party) in repository. |
| 285 | (and | 285 | (and |
| 286 | (cvs-or | 286 | (cvs-or |
| 287 | ;; some cvs versions output quotes around these files | ||
| 288 | (cvs-match "warning: `\\(.*\\)' is not (any longer) pertinent$" (file 1)) | ||
| 287 | (cvs-match "warning: \\(.*\\) is not (any longer) pertinent$" (file 1)) | 289 | (cvs-match "warning: \\(.*\\) is not (any longer) pertinent$" (file 1)) |
| 288 | (cvs-match "`\\(.*\\)' is no longer in the repository$" (file 1)) | 290 | (cvs-match "`\\(.*\\)' is no longer in the repository$" (file 1)) |
| 289 | (cvs-match "\\(.*\\) is no longer in the repository$" (file 1))) | 291 | (cvs-match "\\(.*\\) is no longer in the repository$" (file 1))) |