Function: woman2-RS
woman2-RS is a byte-compiled function defined in woman.el.gz.
Signature
(woman2-RS TO)
Documentation
.RS i -- Start relative indent, move left margin in distance i.
Set prevailing indent to 5 for nested indents. Format paragraphs upto TO.
Source Code
;; Defined in /usr/src/emacs/lisp/woman.el.gz
(defun woman2-RS (to)
".RS i -- Start relative indent, move left margin in distance i.
Set prevailing indent to 5 for nested indents. Format paragraphs upto TO."
(push woman-left-margin woman-RS-left-margin)
(push woman-prevailing-indent woman-RS-prevailing-indent)
(setq woman-left-margin (+ woman-left-margin
(woman2-get-prevailing-indent))
woman-prevailing-indent woman-default-indent)
(woman2-format-paragraphs to woman-left-margin))