aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBoris Goldowsky1995-03-02 15:55:09 +0000
committerBoris Goldowsky1995-03-02 15:55:09 +0000
commit6b60c5d19f94c5bf15b80d5f4eae831822f5cd1c (patch)
tree1b342431f56fd90072e20c0bc5286dee54fab8aa
parentfc4a6dd106f251e19bb8589ef32900b841f98039 (diff)
downloademacs-6b60c5d19f94c5bf15b80d5f4eae831822f5cd1c.tar.gz
emacs-6b60c5d19f94c5bf15b80d5f4eae831822f5cd1c.zip
(vc-comment-to-change-log): Remove ^ from paragraph-start & paragraph-separate.
-rw-r--r--lisp/vc.el4
1 files 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'."
786 (indent-to indentation)) 786 (indent-to indentation))
787 (setq end (point)))) 787 (setq end (point))))
788 ;; Fill the inserted text, preserving open-parens at bol. 788 ;; Fill the inserted text, preserving open-parens at bol.
789 (let ((paragraph-separate (concat paragraph-separate "\\|^\\s *\\s(")) 789 (let ((paragraph-separate (concat paragraph-separate "\\|\\s *\\s("))
790 (paragraph-start (concat paragraph-start "\\|^\\s *\\s("))) 790 (paragraph-start (concat paragraph-start "\\|\\s *\\s(")))
791 (beginning-of-line) 791 (beginning-of-line)
792 (fill-region (point) end)) 792 (fill-region (point) end))
793 ;; Canonicalize the white space at the end of the entry so it is 793 ;; Canonicalize the white space at the end of the entry so it is