]> git.eshelyaron.com Git - emacs.git/commitdiff
Revert "Add edebug specs for inline.el"
authorLars Ingebrigtsen <larsi@gnus.org>
Mon, 15 Jul 2019 14:47:52 +0000 (16:47 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Mon, 15 Jul 2019 14:47:52 +0000 (16:47 +0200)
This reverts commit ed29d9fe5286ab6ecfb2bfa5a015b9945a84512b.

The edebug specs were already in the declare form, and in addition, it didn't fix the problem.

lisp/emacs-lisp/inline.el

index 66002898b65453cefd9685c8aba888b609fd57a0..70dbff2147d501ffbea4a635742bf3a4d294cd5f 100644 (file)
@@ -69,7 +69,6 @@
 
 (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