diff options
author | Gemini Lasswell <gazally@runbox.com> | 2019-07-21 15:40:41 +0200 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2019-07-21 15:40:48 +0200 |
commit | 0c48c0d0b241c1f3d089be033a7dea3a9b947ca5 (patch) | |
tree | 2fe33b22ab70049d39915383659b5dd2c99c1796 /lisp/emacs-lisp | |
parent | 49e80e765b693736a8bb97ae5bfa341d25bf4f02 (diff) | |
download | emacs-0c48c0d0b241c1f3d089be033a7dea3a9b947ca5.tar.gz emacs-0c48c0d0b241c1f3d089be033a7dea3a9b947ca5.tar.bz2 emacs-0c48c0d0b241c1f3d089be033a7dea3a9b947ca5.zip |
Fix inline-quote Edebug spec
* lisp/emacs-lisp/inline.el (inline-quote): Fix the edebug spec
(bug#31051).
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/inline.el | 2 |
1 files changed, 1 insertions, 1 deletions
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) |