aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Ingebrigtsen2019-07-15 16:47:52 +0200
committerLars Ingebrigtsen2019-07-15 16:47:52 +0200
commit3b6992118501d0a17b6817a91011f8e8dcdf8164 (patch)
treef8e9163163cd0d49254b4fe7bdadb611b305b0a9
parentd0e558c0025b295bbd8c51122600d1083ed6d391 (diff)
downloademacs-3b6992118501d0a17b6817a91011f8e8dcdf8164.tar.gz
emacs-3b6992118501d0a17b6817a91011f8e8dcdf8164.zip
Revert "Add edebug specs for inline.el"
This reverts commit ed29d9fe5286ab6ecfb2bfa5a015b9945a84512b. The edebug specs were already in the declare form, and in addition, it didn't fix the problem.
-rw-r--r--lisp/emacs-lisp/inline.el2
1 files changed, 0 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/inline.el b/lisp/emacs-lisp/inline.el
index 66002898b65..70dbff2147d 100644
--- a/lisp/emacs-lisp/inline.el
+++ b/lisp/emacs-lisp/inline.el
@@ -69,7 +69,6 @@
69 69
70(require 'macroexp) 70(require 'macroexp)
71 71
72(def-edebug-spec inline-quote (backquote-form))
73(defmacro inline-quote (_exp) 72(defmacro inline-quote (_exp)
74 "Similar to backquote, but quotes code and only accepts , and not ,@." 73 "Similar to backquote, but quotes code and only accepts , and not ,@."
75 (declare (debug t)) 74 (declare (debug t))
@@ -101,7 +100,6 @@
101 ;; inline-letevals, so signal the error in terms of the user's code. 100 ;; inline-letevals, so signal the error in terms of the user's code.
102 (error "inline-letevals can only be used within define-inline")) 101 (error "inline-letevals can only be used within define-inline"))
103 102
104(def-edebug-spec inline-letevals '(sexp body))
105(defmacro inline-letevals (vars &rest body) 103(defmacro inline-letevals (vars &rest body)
106 "Make sure the expressions in VARS are evaluated. 104 "Make sure the expressions in VARS are evaluated.
107VARS should be a list of elements of the form (VAR EXP) or just VAR, in case 105VARS should be a list of elements of the form (VAR EXP) or just VAR, in case