Function: woman-find-next-control-line-carefully
woman-find-next-control-line-carefully is a byte-compiled function
defined in woman.el.gz.
Signature
(woman-find-next-control-line-carefully)
Documentation
Find and return start of next control line, even if already there!
Source Code
;; Defined in /usr/src/emacs/lisp/woman.el.gz
(defun woman-find-next-control-line-carefully ()
"Find and return start of next control line, even if already there!"
(if (looking-at "^[.']")
(point)
(woman-find-next-control-line)))