diff options
| author | Gemini Lasswell | 2019-07-21 15:40:41 +0200 |
|---|---|---|
| committer | Lars Ingebrigtsen | 2019-07-21 15:40:48 +0200 |
| commit | 0c48c0d0b241c1f3d089be033a7dea3a9b947ca5 (patch) | |
| tree | 2fe33b22ab70049d39915383659b5dd2c99c1796 | |
| parent | 49e80e765b693736a8bb97ae5bfa341d25bf4f02 (diff) | |
| download | emacs-0c48c0d0b241c1f3d089be033a7dea3a9b947ca5.tar.gz emacs-0c48c0d0b241c1f3d089be033a7dea3a9b947ca5.zip | |
Fix inline-quote Edebug spec
* lisp/emacs-lisp/inline.el (inline-quote): Fix the edebug spec
(bug#31051).
| -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 @@ | |||
| 71 | 71 | ||
| 72 | (defmacro inline-quote (_exp) | 72 | (defmacro inline-quote (_exp) |
| 73 | "Similar to backquote, but quotes code and only accepts , and not ,@." | 73 | "Similar to backquote, but quotes code and only accepts , and not ,@." |
| 74 | (declare (debug t)) | 74 | (declare (debug backquote-form)) |
| 75 | (error "inline-quote can only be used within define-inline")) | 75 | (error "inline-quote can only be used within define-inline")) |
| 76 | 76 | ||
| 77 | (defmacro inline-const-p (_exp) | 77 | (defmacro inline-const-p (_exp) |