Function: LaTeX-provided-package-options-member
LaTeX-provided-package-options-member is a byte-compiled function
defined in latex.el.
Signature
(LaTeX-provided-package-options-member PACKAGE OPTION)
Documentation
Return non-nil if OPTION has been given to PACKAGE at load time.
The value is actually the tail of the list of options given to PACKAGE.
Source Code
;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/latex.el
(defun LaTeX-provided-package-options-member (package option)
"Return non-nil if OPTION has been given to PACKAGE at load time.
The value is actually the tail of the list of options given to PACKAGE."
(member option (cdr (assoc package LaTeX-provided-package-options))))