Function: TeX-arg-maybe

TeX-arg-maybe is a byte-compiled function defined in tex.el.

Signature

(TeX-arg-maybe SYMBOL LIST FORM)

Documentation

Evaluate FORM, if SYMBOL is an element of LIST.

Source Code

;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/tex.el
(defun TeX-arg-maybe (symbol list form)
  "Evaluate FORM, if SYMBOL is an element of LIST."
  (when (memq symbol list)
    (eval form t)))