Function: c-lang-defconst-eval-immediately
c-lang-defconst-eval-immediately is a macro defined in cc-defs.el.gz.
Signature
(c-lang-defconst-eval-immediately FORM)
Documentation
Can be used inside a VAL in c-lang-defconst to evaluate FORM
immediately, i.e. at the same time as the c-lang-defconst form
itself is evaluated.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/cc-defs.el.gz
(defmacro c-lang-defconst-eval-immediately (form)
"Can be used inside a VAL in `c-lang-defconst' to evaluate FORM
immediately, i.e. at the same time as the `c-lang-defconst' form
itself is evaluated."
(declare (debug t))
;; Evaluate at macro expansion time, i.e. in the
;; `c--macroexpand-all' inside `c-lang-defconst'.
(eval form))