Function: rst-join-paragraph

rst-join-paragraph is an interactive and byte-compiled function defined in rst.el.gz.

Signature

(rst-join-paragraph)

Documentation

Join lines in current paragraph into one line, removing end-of-lines.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/rst.el.gz
;; FIXME: Unbound command - should be bound or removed.
(defun rst-join-paragraph ()
  "Join lines in current paragraph into one line, removing end-of-lines."
  (interactive)
  (let ((fill-column 65000)) ; Some big number.
    (call-interactively #'fill-paragraph)))