* lisp/emacs-lisp/inline.el (inline-const-val): Improve docstring

This commit is contained in:
Stefan Monnier 2024-01-30 13:14:32 -05:00
parent c8b9ec923f
commit 3afbab2f1d

View file

@ -80,7 +80,9 @@
(error "inline-const-p can only be used within define-inline"))
(defmacro inline-const-val (_exp)
"Return the value of 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"))