GNU bug report logs -
#77609
How to add multiple functions to one hook with :hook in use-package?
Previous Next
Full log
View this message in rfc822 format
[Message part 1 (text/plain, inline)]
Your message dated Sat, 24 May 2025 12:58:10 +0300
with message-id <86frgu1gb1.fsf <at> gnu.org>
and subject line Re: bug#77609: How to add multiple functions to one hook with :hook in use-package?
has caused the debbugs.gnu.org bug report #77609,
regarding How to add multiple functions to one hook with :hook in use-package?
to be marked as done.
(If you believe you have received this mail in error, please contact
help-debbugs <at> gnu.org.)
--
77609: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=77609
GNU Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
[Message part 3 (text/plain, inline)]
The manual says:
The @code{:hook} keyword allows adding functions to hooks. It takes
@c FIXME: The actual forms accepted by :hook are different, see below!
one argument of the form @var{hooks}, specifying one or more functions
to add to one or more hooks.
The FIXME suggests that the documentation may be incorrect!
I am precisely trying to add multiple functions to one hook, and I can't
work out how to do it with a single :hook clause. Is this in fact possible?
The most obvious syntax, copying the syntax for adding a function to
multiple hooks, does not work, e.g.:
(use-package foo-mode
:hook
(foo-mode . (function-a function-b)))
I tried other things, and searching online, and even looking at the source
code for use-package, but I can't work it out. Hence, maybe a good chance
to fix this FIXME in the docs, and explain to users how this is done, or
state that it cannot be done, and you have to use another method to add
multiple functions to a hook.
I have to say, use-package (which I have only now looked at) is a
revelation!
--
https://rrt.sc3d.org
[Message part 4 (text/html, inline)]
[Message part 5 (message/rfc822, inline)]
> From: John Wiegley <johnw <at> gnu.org>
> Cc: 77609 <at> debbugs.gnu.org, rrt <at> sc3d.org
> Date: Wed, 21 May 2025 23:20:32 -0700
>
> >>>>> Eli Zaretskii <eliz <at> gnu.org> writes:
>
> > Ping! How can we make any further progress here?
>
> So, I dug into ‘use-package-normalize/:hook’ to see how hard it would be and…
> it’s unreasonably hard. Accepting a list of functions in this way is just not
> something the code was designed to do in its current form.
>
> So rather than risk breaking lots of things, I think the user just has to
> expand:
>
> :hook (foo a b)
> :hook (foo . (a b))
>
> into
>
> :hook
> (foo . a)
> (foo . b)
Thanks, I've now updated the manual with this information, and I'm
therefore closing this bug.
This bug report was last modified 20 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.