Function: mail-source-value

mail-source-value is a byte-compiled function defined in mail-source.el.gz.

Signature

(mail-source-value VALUE)

Documentation

Return the value of VALUE.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/mail-source.el.gz
(defun mail-source-value (value)
  "Return the value of VALUE."
  (cond
   ;; String
   ((stringp value)
    value)
   ;; Function
   ((and (listp value) (symbolp (car value)) (fboundp (car value)))
    (eval value t))
   ;; Just return the value.
   (t
    value)))