From 6b60c5d19f94c5bf15b80d5f4eae831822f5cd1c Mon Sep 17 00:00:00 2001 From: Boris Goldowsky Date: Thu, 2 Mar 1995 15:55:09 +0000 Subject: [PATCH] (vc-comment-to-change-log): Remove ^ from paragraph-start & paragraph-separate. --- lisp/vc.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lisp/vc.el b/lisp/vc.el index d659d19ccc4..6ac48e2d367 100644 --- a/lisp/vc.el +++ b/lisp/vc.el @@ -786,8 +786,8 @@ If nil, uses `change-log-default-name'." (indent-to indentation)) (setq end (point)))) ;; Fill the inserted text, preserving open-parens at bol. - (let ((paragraph-separate (concat paragraph-separate "\\|^\\s *\\s(")) - (paragraph-start (concat paragraph-start "\\|^\\s *\\s("))) + (let ((paragraph-separate (concat paragraph-separate "\\|\\s *\\s(")) + (paragraph-start (concat paragraph-start "\\|\\s *\\s("))) (beginning-of-line) (fill-region (point) end)) ;; Canonicalize the white space at the end of the entry so it is -- 2.39.5