Fix inline-quote Edebug spec

* lisp/emacs-lisp/inline.el (inline-quote): Fix the edebug spec
(bug#31051).
This commit is contained in:
Gemini Lasswell 2019-07-21 15:40:41 +02:00 committed by Lars Ingebrigtsen
parent 49e80e765b
commit 0c48c0d0b2

View 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)