Function: mail-fill-yanked-message
mail-fill-yanked-message is an interactive and byte-compiled function
defined in sendmail.el.gz.
Signature
(mail-fill-yanked-message &optional JUSTIFYP)
Documentation
Fill the paragraphs of a message yanked into this one.
Numeric argument means justify as well.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/mail/sendmail.el.gz
(defun mail-fill-yanked-message (&optional justifyp)
"Fill the paragraphs of a message yanked into this one.
Numeric argument means justify as well."
(interactive "P")
(save-excursion
(goto-char (mail-text-start))
(fill-individual-paragraphs (point)
(point-max)
justifyp
mail-citation-prefix-regexp)))