From: Stefan Monnier Date: Thu, 5 Apr 2018 01:15:36 +0000 (-0400) Subject: * lisp/emacs-lisp/inline.el: Clarify apparent typos X-Git-Tag: emacs-26.1-rc1~9 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=80d868e;p=emacs.git * lisp/emacs-lisp/inline.el: Clarify apparent typos --- 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)