Mercurial > emacs
changeset 10900:5b375fee0e1f
(vc-comment-to-change-log): Remove ^ from paragraph-start & paragraph-separate.
author | Boris Goldowsky <boris@gnu.org> |
---|---|
date | Thu, 02 Mar 1995 15:55:09 +0000 |
parents | 03f7e4952d42 |
children | 218400c0a4a7 |
files | lisp/vc.el |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/vc.el Thu Mar 02 15:54:12 1995 +0000 +++ b/lisp/vc.el Thu Mar 02 15:55:09 1995 +0000 @@ -786,8 +786,8 @@ (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