Function: LaTeX-provided-class-options-member

LaTeX-provided-class-options-member is a byte-compiled function defined in latex.el.

Signature

(LaTeX-provided-class-options-member CLASS OPTION)

Documentation

Return non-nil if OPTION has been given to CLASS at load time.

The value is actually the tail of the list of options given to CLASS.

Source Code

;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/latex.el
(defun LaTeX-provided-class-options-member (class option)
  "Return non-nil if OPTION has been given to CLASS at load time.
The value is actually the tail of the list of options given to CLASS."
  (member option (cdr (assoc class LaTeX-provided-class-options))))