Function: calendar-customized-p
calendar-customized-p is a byte-compiled function defined in
calendar.el.gz.
Signature
(calendar-customized-p SYMBOL)
Documentation
Return non-nil if SYMBOL has been customized.
Source Code
;; Defined in /usr/src/emacs/lisp/calendar/calendar.el.gz
(defun calendar-customized-p (symbol)
"Return non-nil if SYMBOL has been customized."
(and (default-boundp symbol)
(let ((standard (get symbol 'standard-value)))
(and standard
(not (equal (eval (car standard) t) (default-value symbol)))))))