diff options
author | Andreas Schwab <schwab@suse.de> | 2008-06-15 10:29:13 +0000 |
---|---|---|
committer | Andreas Schwab <schwab@suse.de> | 2008-06-15 10:29:13 +0000 |
commit | 06abe7bc18852e71baa16563334a3f6ea5b8ca07 (patch) | |
tree | d30bc016c55cea67b3861f5d4bd1a9e30b310761 /lisp/vc-cvs.el | |
parent | 3306c6dcd73a6329e05aa46cce8cac86651b109b (diff) | |
download | emacs-06abe7bc18852e71baa16563334a3f6ea5b8ca07.tar.gz |
(vc-cvs-status-extra-headers): Don't match newline
when parsing CVS/Repository.
Diffstat (limited to 'lisp/vc-cvs.el')
-rw-r--r-- | lisp/vc-cvs.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/vc-cvs.el b/lisp/vc-cvs.el index 6c3d4fe5c18..edaf7f08d7c 100644 --- a/lisp/vc-cvs.el +++ b/lisp/vc-cvs.el @@ -942,7 +942,7 @@ state." (with-temp-buffer (insert-file-contents "CVS/Repository") (goto-char (point-min)) - (re-search-forward "[^/]*" nil t) + (re-search-forward "[^/\n]*" nil t) (concat (match-string 0) "\n")) (file-error nil)))) (concat |