Function: message-fill-paragraph

message-fill-paragraph is an interactive and byte-compiled function defined in message.el.gz.

Signature

(message-fill-paragraph &optional ARG)

Documentation

Message specific function to fill a paragraph.

This function is used as the value of fill-paragraph-function in Message buffers and is not meant to be called directly.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/message.el.gz
(defun message-fill-paragraph (&optional arg)
  "Message specific function to fill a paragraph.
This function is used as the value of `fill-paragraph-function' in
Message buffers and is not meant to be called directly."
  (interactive (list (if current-prefix-arg 'full)) message-mode)
  (if (message-point-in-header-p)
      (message-fill-field)
    (message-newline-and-reformat arg t))
  t)