From: bojohan+news@dd.chalmers.se (Johan Bockgård)
To: help-gnu-emacs@gnu.org
Subject: Re: how to temporarily remove a function from a hook?
Date: Thu, 09 Jul 2009 13:14:41 +0200 [thread overview]
Message-ID: <yoijtz1m85we.fsf@remote2.student.chalmers.se> (raw)
In-Reply-To: barmar-50AD19.00040209072009@news.eternal-september.org
Barry Margolin <barmar@alum.mit.edu> writes:
> Or:
>
> (let ((foo-hook foo-hook))
> (remove-hook 'bar 'foo-hook)
> ...)
>
> This doesn't violate the abstraction of remove-hook.
(add-hook 'foo-hook 'global)
(add-hook 'foo-hook 'local nil t)
(list (default-value 'foo-hook)
foo-hook)
=>
((global) (local t))
(let ((foo-hook foo-hook))
(remove-hook 'foo-hook 'global))
(list (default-value 'foo-hook)
foo-hook)
=>
(nil (local t))
next prev parent reply other threads:[~2009-07-09 11:14 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <mailman.2124.1247103655.2239.help-gnu-emacs@gnu.org>
2009-07-09 2:42 ` how to temporarily remove a function from a hook? Pascal J. Bourguignon
2009-07-09 4:04 ` Barry Margolin
2009-07-09 11:14 ` Johan Bockgård [this message]
2009-07-09 1:40 Kevin Rodgers
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
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=yoijtz1m85we.fsf@remote2.student.chalmers.se \
--to=bojohan+news@dd.chalmers.se \
--cc=help-gnu-emacs@gnu.org \
/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.
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.