Function: inline-const-val

inline-const-val is a macro defined in inline.el.gz.

Signature

(inline-const-val EXP)

Documentation

Return the value of EXP.

During inlining, if the value of EXP is not yet known, this aborts the inlining and makes us revert to a non-inlined function call.

View in manual

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/inline.el.gz
(defmacro inline-const-val (_exp)
  "Return the value of EXP.
During inlining, if the value of EXP is not yet known, this aborts the
inlining and makes us revert to a non-inlined function call."
  (declare (debug t))
  (error "inline-const-val can only be used within define-inline"))