diff options
| author | Stefan Monnier | 2007-11-28 04:48:04 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2007-11-28 04:48:04 +0000 |
| commit | 571e4e6149d0a8e2ad3ee50febb71d07a93d204e (patch) | |
| tree | f9f999f6a36ec90a0b8c2ab52fbee32ddcc80f8b /lisp/pcvs-parse.el | |
| parent | cc648cef36b6911a73cf9927e99a902533dcfe3f (diff) | |
| download | emacs-571e4e6149d0a8e2ad3ee50febb71d07a93d204e.tar.gz emacs-571e4e6149d0a8e2ad3ee50febb71d07a93d204e.zip | |
(cvs-parse-table): Adjust regexp for resurrections.
Diffstat (limited to 'lisp/pcvs-parse.el')
| -rw-r--r-- | lisp/pcvs-parse.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/pcvs-parse.el b/lisp/pcvs-parse.el index 7eb5c0b488f..61ee7b4bea2 100644 --- a/lisp/pcvs-parse.el +++ b/lisp/pcvs-parse.el | |||
| @@ -302,7 +302,7 @@ The remaining KEYS are passed directly to `cvs-create-fileinfo'." | |||
| 302 | 302 | ||
| 303 | ;; [add] this will also show up as a `U <file>' | 303 | ;; [add] this will also show up as a `U <file>' |
| 304 | (and | 304 | (and |
| 305 | (cvs-match "\\(.*\\), version \\(.*\\), resurrected$" | 305 | (cvs-match "`?\\(.*?\\)'?, version \\(.*\\), resurrected$" |
| 306 | (path 1) (base-rev 2)) | 306 | (path 1) (base-rev 2)) |
| 307 | ;; FIXME: resurrection only brings back the original version, | 307 | ;; FIXME: resurrection only brings back the original version, |
| 308 | ;; not the latest on the branch, so `up-to-date' is not always | 308 | ;; not the latest on the branch, so `up-to-date' is not always |