Function: woman-if-ignore
woman-if-ignore is a byte-compiled function defined in woman.el.gz.
Signature
(woman-if-ignore TO REQUEST)
Documentation
Ignore but warn about an if request ending at TO, named REQUEST.
Source Code
;; Defined in /usr/src/emacs/lisp/woman.el.gz
;; request is not used dynamically by any callees.
(defun woman-if-ignore (to request)
"Ignore but warn about an if request ending at TO, named REQUEST."
(WoMan-warn-ignored request "ignored -- condition not handled!")
(if woman-ignore
(woman-if-body request to t)
;; Ignore -- leave in buffer
;; This does not work too well, but it's only for debugging!
(skip-chars-forward "^ \t")
(if (looking-at "[ \t]*{") (search-forward "}"))
(forward-line 1)))