]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix inline-quote Edebug spec
authorGemini Lasswell <gazally@runbox.com>
Sun, 21 Jul 2019 13:40:41 +0000 (15:40 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Sun, 21 Jul 2019 13:40:48 +0000 (15:40 +0200)
* lisp/emacs-lisp/inline.el (inline-quote): Fix the edebug spec
(bug#31051).

lisp/emacs-lisp/inline.el

index 70dbff2147d501ffbea4a635742bf3a4d294cd5f..39f8e9b59473c9c6548e73b9ba41de82c6ef4449 100644 (file)
@@ -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)