From 0c48c0d0b241c1f3d089be033a7dea3a9b947ca5 Mon Sep 17 00:00:00 2001 From: Gemini Lasswell Date: Sun, 21 Jul 2019 15:40:41 +0200 Subject: [PATCH] Fix inline-quote Edebug spec * lisp/emacs-lisp/inline.el (inline-quote): Fix the edebug spec (bug#31051). --- lisp/emacs-lisp/inline.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/emacs-lisp/inline.el b/lisp/emacs-lisp/inline.el index 70dbff2147d..39f8e9b5947 100644 --- a/lisp/emacs-lisp/inline.el +++ b/lisp/emacs-lisp/inline.el @@ -71,7 +71,7 @@ (defmacro inline-quote (_exp) "Similar to backquote, but quotes code and only accepts , and not ,@." - (declare (debug t)) + (declare (debug backquote-form)) (error "inline-quote can only be used within define-inline")) (defmacro inline-const-p (_exp) -- 2.39.2