Function: gnus-eval-format
gnus-eval-format is a byte-compiled function defined in
gnus-spec.el.gz.
Signature
(gnus-eval-format FORMAT &optional ALIST PROPS)
Documentation
Eval the format variable FORMAT, using ALIST.
If PROPS, insert the result.
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-spec.el.gz
(defun gnus-eval-format (format &optional alist props)
"Eval the format variable FORMAT, using ALIST.
If PROPS, insert the result."
(let ((form (gnus-parse-format format alist props)))
(if props
(add-text-properties (point) (progn (eval form t) (point)) props)
(eval form t))))