* lisp/emacs-lisp/inline.el: Clarify apparent typos
This commit is contained in:
parent
9f54f285c9
commit
80d868ed1c
1 changed files with 4 additions and 0 deletions
|
@ -91,9 +91,13 @@
|
||||||
|
|
||||||
(defmacro inline--leteval (_var-exp &rest _body)
|
(defmacro inline--leteval (_var-exp &rest _body)
|
||||||
(declare (indent 1) (debug (sexp &rest body)))
|
(declare (indent 1) (debug (sexp &rest body)))
|
||||||
|
;; BEWARE: if we're here it's presumably via macro-expansion of
|
||||||
|
;; inline-letevals, so signal the error in terms of the user's code.
|
||||||
(error "inline-letevals can only be used within define-inline"))
|
(error "inline-letevals can only be used within define-inline"))
|
||||||
(defmacro inline--letlisteval (_list &rest _body)
|
(defmacro inline--letlisteval (_list &rest _body)
|
||||||
(declare (indent 1) (debug (sexp &rest body)))
|
(declare (indent 1) (debug (sexp &rest body)))
|
||||||
|
;; BEWARE: if we're here it's presumably via macro-expansion of
|
||||||
|
;; inline-letevals, so signal the error in terms of the user's code.
|
||||||
(error "inline-letevals can only be used within define-inline"))
|
(error "inline-letevals can only be used within define-inline"))
|
||||||
|
|
||||||
(defmacro inline-letevals (vars &rest body)
|
(defmacro inline-letevals (vars &rest body)
|
||||||
|
|
Loading…
Add table
Reference in a new issue