Function: rst-force-fill-paragraph
rst-force-fill-paragraph is an interactive and byte-compiled function
defined in rst.el.gz.
Signature
(rst-force-fill-paragraph)
Documentation
Fill paragraph at point, first joining the paragraph's lines into one.
This is useful for filling list item paragraphs.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/rst.el.gz
;; FIXME: Unbound command - should be bound or removed.
(defun rst-force-fill-paragraph ()
"Fill paragraph at point, first joining the paragraph's lines into one.
This is useful for filling list item paragraphs."
(interactive)
(rst-join-paragraph)
(fill-paragraph nil))