Function: woman2-fi
woman2-fi is a byte-compiled function defined in woman.el.gz.
Signature
(woman2-fi TO)
Documentation
.fi -- Fill subsequent output lines. Leave no blank line.
Format paragraphs upto TO.
Aliases
Source Code
;; Defined in /usr/src/emacs/lisp/woman.el.gz
(defun woman2-fi (to)
".fi -- Fill subsequent output lines. Leave no blank line.
Format paragraphs upto TO."
(setq woman-nofill nil)
(woman-delete-line 1) ; ignore any arguments
;; Preserve any final blank line in the nofill region:
(save-excursion
(forward-line -1)
(if (looking-at "[ \t]*$") (setq woman-leave-blank-lines 1)))
(woman2-format-paragraphs to))