1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-06 03:40:56 -08:00

Revert "Add edebug specs for inline.el"

This reverts commit ed29d9fe52.

The edebug specs were already in the declare form, and in addition, it didn't fix the problem.
This commit is contained in:
Lars Ingebrigtsen 2019-07-15 16:47:52 +02:00
parent d0e558c002
commit 3b69921185

View 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))
@ -101,7 +100,6 @@
;; 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