]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/emacs-lisp/inline.el: Clarify apparent typos
authorStefan Monnier <monnier@iro.umontreal.ca>
Thu, 5 Apr 2018 01:15:36 +0000 (21:15 -0400)
committerStefan Monnier <monnier@iro.umontreal.ca>
Thu, 5 Apr 2018 01:15:36 +0000 (21:15 -0400)
lisp/emacs-lisp/inline.el

index 02f9bf2ffc7acc4c5bc0e2cadbe9f162d1bca954..865e17e3d7d3541e56e45cbbd18d56851545c0c9 100644 (file)
 
 (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)