Function: woman2-RE

woman2-RE is a byte-compiled function defined in woman.el.gz.

Signature

(woman2-RE TO)

Documentation

.RE -- End of relative indent. Format paragraphs up to TO.

Set prevailing indent to amount of starting .RS.

Source Code

;; Defined in /usr/src/emacs/lisp/woman.el.gz
(defun woman2-RE (to)
  ".RE -- End of relative indent.  Format paragraphs up to TO.
Set prevailing indent to amount of starting .RS."
  (when woman-RS-left-margin
    (setq woman-left-margin (pop woman-RS-left-margin)))
  (when woman-RS-prevailing-indent
    (setq woman-prevailing-indent (pop woman-RS-prevailing-indent)))
  (woman-delete-line 1)			; ignore any arguments
  (woman2-format-paragraphs to woman-left-margin))