Function: change-log-fill-forward-paragraph

change-log-fill-forward-paragraph is a byte-compiled function defined in add-log.el.gz.

Signature

(change-log-fill-forward-paragraph N)

Documentation

Cut paragraphs so filling preserves open parentheses at beginning of lines.

Source Code

;; Defined in /usr/src/emacs/lisp/vc/add-log.el.gz
(defun change-log-fill-forward-paragraph (n)
  "Cut paragraphs so filling preserves open parentheses at beginning of lines."
  (let (;; Add lines starting with whitespace followed by a left paren or an
	;; asterisk.
	(paragraph-start (concat paragraph-start "\\|\\s *\\(?:\\s(\\|\\*\\)")))
    (forward-paragraph n)))