From: Emanuel Berg via Users list for the GNU Emacs text editor <help-gnu-emacs@gnu.org>
To: help-gnu-emacs@gnu.org
Subject: Re: The cons syntax format used by use-package.
Date: Tue, 21 Sep 2021 13:58:47 +0200 [thread overview]
Message-ID: <87sfxyta14.fsf@zoho.eu> (raw)
In-Reply-To: CAGP6PO+Uwvc=r6WaLm+CdOV6U4Ux7q-1h1FMmOwDZ1jN_keFpA@mail.gmail.com
I was showed this method by a certain individual and have used
it since
;; (setq gnus-article-prepare-hook nil)
(defun gnus-article-prepare-hook-f ()
(gnus-with-article-buffer
(gnus-article-wash-more) ))
(add-hook 'gnus-article-prepare-hook #'gnus-article-prepare-hook-f)
And this I was showed by another individual
(defun add-one-shot-hook (hook fun)
(let ((name (cl-gensym)))
(setf (symbol-function name)
(lambda (&rest _)
(remove-hook hook name)
(funcall fun) ))
(add-hook hook name) ))
Urban legend: hooks slow down the interactive feel. (Real
mystery: what does?)
And what does "Never hook with a hooker" mean?
Actually it makes sense even tho (especially) because you DO
want to jab with a jabber ...
--
underground experts united
https://dataswamp.org/~incal
prev parent reply other threads:[~2021-09-21 11:58 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-09-18 13:15 The cons syntax format used by use-package Hongyi Zhao
2021-09-18 13:21 ` Daniel Fleischer
2021-09-18 13:33 ` Hongyi Zhao
2021-09-19 4:14 ` Hongyi Zhao
2021-09-19 7:04 ` Daniel Fleischer
2021-09-19 7:41 ` Hongyi Zhao
2021-09-21 11:58 ` Emanuel Berg via Users list for the GNU Emacs text editor [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://www.gnu.org/software/emacs/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=87sfxyta14.fsf@zoho.eu \
--to=help-gnu-emacs@gnu.org \
--cc=moasenwood@zoho.eu \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).