summaryrefslogtreecommitdiff
path: root/lisp/files.el
diff options
context:
space:
mode:
authorLars Ingebrigtsen <larsi@gnus.org>2021-02-16 23:32:04 +0100
committerLars Ingebrigtsen <larsi@gnus.org>2021-02-16 23:32:04 +0100
commitb39ac4c85a80bc2ee07c3e2f5d5b93c493062ecf (patch)
tree610292ba5d1ff5cc7e36799ccbe137d95918240c /lisp/files.el
parentcead0ea38e3e15a544f7374b2e831623bda37f1d (diff)
downloademacs-b39ac4c85a80bc2ee07c3e2f5d5b93c493062ecf.tar.gz
emacs-b39ac4c85a80bc2ee07c3e2f5d5b93c493062ecf.tar.bz2
emacs-b39ac4c85a80bc2ee07c3e2f5d5b93c493062ecf.zip
Fix edebug spec for minibuffer-with-setup-hook
* lisp/files.el (minibuffer-with-setup-hook): Instrument the :append form for edebug (bug#46531).
Diffstat (limited to 'lisp/files.el')
-rw-r--r--lisp/files.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/files.el b/lisp/files.el
index 9ff8f31e374..68e883513cb 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))