aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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