diff options
author | Paul Eggert <eggert@twinsun.com> | 1996-02-26 00:53:13 +0000 |
---|---|---|
committer | Paul Eggert <eggert@twinsun.com> | 1996-02-26 00:53:13 +0000 |
commit | d5c8e97af581c93baa090a26c12ca76ee9bb9863 (patch) | |
tree | db51bdcb7c28ac133e5132c9729e823798efaaca /lisp/vc-hooks.el | |
parent | d9a84b157d9d640ebd9f46a98c8905a32f6ac678 (diff) | |
download | emacs-d5c8e97af581c93baa090a26c12ca76ee9bb9863.tar.gz |
(vc-find-cvs-master): Don't require a "/" after the modification time
in CVS/Entries, since the time may be followed by a conflict notice
(in CVS 1.7) or by some other value (in CVS 1.3).
Diffstat (limited to 'lisp/vc-hooks.el')
-rw-r--r-- | lisp/vc-hooks.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/vc-hooks.el b/lisp/vc-hooks.el index ea4fd6543f5..4ac1668c842 100644 --- a/lisp/vc-hooks.el +++ b/lisp/vc-hooks.el @@ -791,7 +791,7 @@ For CVS, the full name of CVS/Entries is returned." (cond ((re-search-forward (concat "^/" (regexp-quote basename) - "/\\([^/]*\\)/[^ /]* \\([A-Z][a-z][a-z]\\) *\\([0-9]*\\) \\([0-9]*\\):\\([0-9]*\\):\\([0-9]*\\) \\([0-9]*\\)/") + "/\\([^/]*\\)/[^ /]* \\([A-Z][a-z][a-z]\\) *\\([0-9]*\\) \\([0-9]*\\):\\([0-9]*\\):\\([0-9]*\\) \\([0-9]*\\)") nil t) (setq case-fold-search fold) ;; restore the old value ;; We found it. Store away version number now that we |