diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2019-07-15 16:47:52 +0200 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2019-07-15 16:47:52 +0200 |
commit | 3b6992118501d0a17b6817a91011f8e8dcdf8164 (patch) | |
tree | f8e9163163cd0d49254b4fe7bdadb611b305b0a9 /lisp/emacs-lisp/inline.el | |
parent | d0e558c0025b295bbd8c51122600d1083ed6d391 (diff) | |
download | emacs-3b6992118501d0a17b6817a91011f8e8dcdf8164.tar.gz |
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.
Diffstat (limited to 'lisp/emacs-lisp/inline.el')
-rw-r--r-- | lisp/emacs-lisp/inline.el | 2 |
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 @@ (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 |