Function: TeX-verbatim-p

TeX-verbatim-p is a byte-compiled function defined in tex.el.

Signature

(TeX-verbatim-p &optional POS)

Documentation

Return non-nil if position POS is in a verbatim-like construct.

A mode-specific implementation is required. If it is not available, the function always returns nil.

Source Code

;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/tex.el
;; XXX: We only have an implementation for LaTeX mode at the moment (Oct 2009).
(defun TeX-verbatim-p (&optional pos)
  "Return non-nil if position POS is in a verbatim-like construct.
A mode-specific implementation is required.  If it is not
available, the function always returns nil."
  (when TeX-verbatim-p-function
    (funcall TeX-verbatim-p-function pos)))