From: Boris Goldowsky Date: Thu, 2 Mar 1995 15:55:09 +0000 (+0000) Subject: (vc-comment-to-change-log): Remove ^ from paragraph-start & paragraph-separate. X-Git-Tag: emacs-19.34~4958 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=6b60c5d19f94c5bf15b80d5f4eae831822f5cd1c;p=emacs.git (vc-comment-to-change-log): Remove ^ from paragraph-start & paragraph-separate. --- 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