]> git.eshelyaron.com Git - emacs.git/commitdiff
Add edebug specs for inline.el
authorLars Ingebrigtsen <larsi@gnus.org>
Sat, 13 Jul 2019 16:07:11 +0000 (18:07 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Sat, 13 Jul 2019 16:07:11 +0000 (18:07 +0200)
* lisp/emacs-lisp/inline.el (inline-quote)
(inline-letevals): Add edebug specs (bug#31051).

lisp/emacs-lisp/inline.el

index 70dbff2147d501ffbea4a635742bf3a4d294cd5f..66002898b65453cefd9685c8aba888b609fd57a0 100644 (file)
@@ -69,6 +69,7 @@
 
 (require 'macroexp)
 
+(def-edebug-spec inline-quote (backquote-form))
 (defmacro inline-quote (_exp)
   "Similar to backquote, but quotes code and only accepts , and not ,@."
   (declare (debug t))
   ;; inline-letevals, so signal the error in terms of the user's code.
   (error "inline-letevals can only be used within define-inline"))
 
+(def-edebug-spec inline-letevals '(sexp body))
 (defmacro inline-letevals (vars &rest body)
   "Make sure the expressions in VARS are evaluated.
 VARS should be a list of elements of the form (VAR EXP) or just VAR, in case