Function: woman2-SH
woman2-SH is a byte-compiled function defined in woman.el.gz.
Signature
(woman2-SH TO)
Documentation
.SH -- Sub-head. Leave blank line and subhead.
Format paragraphs upto TO. Set prevailing indent to 5.
Source Code
;; Defined in /usr/src/emacs/lisp/woman.el.gz
(defun woman2-SH (to)
".SH -- Sub-head. Leave blank line and subhead.
Format paragraphs upto TO. Set prevailing indent to 5."
(if (eolp) ; If no args then
(delete-char 1) ; apply to next line
(woman-unquote-args) ; else unquote to end of heading
(beginning-of-line))
(woman2-process-escapes-to-eol)
(woman-leave-blank-lines woman-interparagraph-distance)
(setq woman-leave-blank-lines nil)
;; Optionally embolden heading (point is at beginning of heading):
(if woman-bold-headings
(woman-set-face (point) (line-end-position) 'woman-bold))
(forward-line)
(setq woman-left-margin woman-default-indent
woman-nofill nil) ; fill output lines
(setq woman-prevailing-indent woman-default-indent)
(woman2-format-paragraphs to woman-left-margin))