Function: woman0-process-escapes

woman0-process-escapes is a byte-compiled function defined in woman.el.gz.

Signature

(woman0-process-escapes FROM TO)

Documentation

Process escapes within an if/ie condition between FROM and TO.

Source Code

;; Defined in /usr/src/emacs/lisp/woman.el.gz
(defsubst woman0-process-escapes (from to)
  "Process escapes within an if/ie condition between FROM and TO."
  (woman-strings to)
  (goto-char from)			; necessary!
  ;; Strip font-change escapes:
  (while (re-search-forward "\\\\f\\(\\[[^]]+\\]\\|(..\\|.\\)" to t)
    (woman-delete-match 0))
  (goto-char from)			; necessary!
  (woman2-process-escapes to 'numeric))