Function: rcirc-fill-paragraph
rcirc-fill-paragraph is an interactive and byte-compiled function
defined in rcirc.el.gz.
Signature
(rcirc-fill-paragraph &optional JUSTIFY)
Documentation
Implementation for fill-paragraph-function.
The argument JUSTIFY is passed on to fill-region.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/net/rcirc.el.gz
(defun rcirc-fill-paragraph (&optional justify)
"Implementation for `fill-paragraph-function'.
The argument JUSTIFY is passed on to `fill-region'."
(interactive "P")
(when (> (point) rcirc-prompt-end-marker)
(save-restriction
(narrow-to-region rcirc-prompt-end-marker (point-max))
(let ((fill-column rcirc-max-message-length))
(fill-region (point-min) (point-max) justify)))))