Function: woman2-SS
woman2-SS is a byte-compiled function defined in woman.el.gz.
Signature
(woman2-SS TO)
Documentation
.SS -- Sub-sub-head. Like .SH but indent heading 3 spaces.
Format paragraphs upto TO.
Source Code
;; Defined in /usr/src/emacs/lisp/woman.el.gz
(defun woman2-SS (to)
".SS -- Sub-sub-head. Like .SH but indent heading 3 spaces.
Format paragraphs upto TO."
(if (eolp) ; If no args then
(delete-char 1)) ; apply to next line.
(insert " ")
(beginning-of-line)
(woman2-SH to))