[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
master b39ac4c 1/2: Fix edebug spec for minibuffer-with-setup-hook
From: |
Lars Ingebrigtsen |
Subject: |
master b39ac4c 1/2: Fix edebug spec for minibuffer-with-setup-hook |
Date: |
Tue, 16 Feb 2021 18:44:03 -0500 (EST) |
branch: master
commit b39ac4c85a80bc2ee07c3e2f5d5b93c493062ecf
Author: Lars Ingebrigtsen <larsi@gnus.org>
Commit: Lars Ingebrigtsen <larsi@gnus.org>
Fix edebug spec for minibuffer-with-setup-hook
* lisp/files.el (minibuffer-with-setup-hook): Instrument the
:append form for edebug (bug#46531).
---
lisp/files.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lisp/files.el b/lisp/files.el
index 9ff8f31..68e8835 100644
--- a/lisp/files.el
+++ b/lisp/files.el
@@ -1639,7 +1639,7 @@ called additional times).
This macro actually adds an auxiliary function that calls FUN,
rather than FUN itself, to `minibuffer-setup-hook'."
- (declare (indent 1) (debug t))
+ (declare (indent 1) (debug ([&or (":append" form) [&or symbolp form]] body)))
(let ((hook (make-symbol "setup-hook"))
(funsym (make-symbol "fun"))
(append nil))