Function: custom-variable-theme-value
custom-variable-theme-value is a byte-compiled function defined in
custom.el.gz.
Signature
(custom-variable-theme-value VARIABLE)
Documentation
Return (list VALUE) indicating the custom theme value of VARIABLE.
That is to say, it specifies what the value should be according to currently enabled custom themes.
This function returns nil if no custom theme specifies a value for VARIABLE.
Source Code
;; Defined in /usr/src/emacs/lisp/custom.el.gz
(defun custom-variable-theme-value (variable)
"Return (list VALUE) indicating the custom theme value of VARIABLE.
That is to say, it specifies what the value should be according to
currently enabled custom themes.
This function returns nil if no custom theme specifies a value for VARIABLE."
(let ((theme-value (get variable 'theme-value)))
(if theme-value
(cdr (car theme-value)))))