summaryrefslogtreecommitdiff
path: root/lisp/vc-cvs.el
diff options
context:
space:
mode:
authorAndreas Schwab <schwab@suse.de>2008-06-15 10:29:13 +0000
committerAndreas Schwab <schwab@suse.de>2008-06-15 10:29:13 +0000
commit06abe7bc18852e71baa16563334a3f6ea5b8ca07 (patch)
treed30bc016c55cea67b3861f5d4bd1a9e30b310761 /lisp/vc-cvs.el
parent3306c6dcd73a6329e05aa46cce8cac86651b109b (diff)
downloademacs-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.el2
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