Function: fill-minibuffer-function
fill-minibuffer-function is a byte-compiled function defined in
fill.el.gz.
Signature
(fill-minibuffer-function ARG)
Documentation
Fill a paragraph in the minibuffer, ignoring the prompt.
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/fill.el.gz
(defun fill-minibuffer-function (arg)
"Fill a paragraph in the minibuffer, ignoring the prompt."
(save-restriction
(narrow-to-region (minibuffer-prompt-end) (point-max))
(fill-paragraph arg)))