diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2018-04-04 21:15:36 -0400 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2018-04-04 21:15:36 -0400 |
commit | 80d868ed1cf3fb1bf62c9b53e65d1034f20be227 (patch) | |
tree | 9099c9909c4a44655a57b5c2183720252dd69429 | |
parent | 9f54f285c9637b8fc262e0994ea4c59f99a87065 (diff) | |
download | emacs-80d868ed1cf3fb1bf62c9b53e65d1034f20be227.tar.gz emacs-80d868ed1cf3fb1bf62c9b53e65d1034f20be227.tar.bz2 emacs-80d868ed1cf3fb1bf62c9b53e65d1034f20be227.zip |
* lisp/emacs-lisp/inline.el: Clarify apparent typos
-rw-r--r-- | lisp/emacs-lisp/inline.el | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lisp/emacs-lisp/inline.el b/lisp/emacs-lisp/inline.el index 02f9bf2ffc7..865e17e3d7d 100644 --- a/lisp/emacs-lisp/inline.el +++ b/lisp/emacs-lisp/inline.el @@ -91,9 +91,13 @@ (defmacro inline--leteval (_var-exp &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")) (defmacro inline--letlisteval (_list &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")) (defmacro inline-letevals (vars &rest body) |