Function: woman2-sp

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

Signature

(woman2-sp TO)

Documentation

.sp N -- If N > 0 then leave 1 blank line. Format paragraphs up to TO.

Source Code

;; Defined in /usr/src/emacs/lisp/woman.el.gz
(defun woman2-sp (to)
  ".sp N -- If N > 0 then leave 1 blank line.  Format paragraphs up to TO."
  (let ((N (if (eolp) 1 (woman-get-numeric-arg))))
    (if (>= N 0)
	(woman-delete-line 1)		; ignore argument(s)
      (setq woman-negative-vertical-space t)
      (insert ".sp ")
      (forward-line))
    (setq woman-leave-blank-lines N)
    (woman2-format-paragraphs to)))