From: Barry Margolin <barmar@alum.mit.edu>
To: help-gnu-emacs@gnu.org
Subject: Re: How do I initialize globalized minor mode only once?
Date: Tue, 10 Jul 2012 23:20:12 -0400 [thread overview]
Message-ID: <barmar-A91477.23201110072012@news.eternal-september.org> (raw)
In-Reply-To: mailman.4534.1341975266.855.help-gnu-emacs@gnu.org
In article <mailman.4534.1341975266.855.help-gnu-emacs@gnu.org>,
Dmitry Gutov <dgutov@yandex.ru> wrote:
> Hi all,
>
> I have written a globalized minor mode which has a relatively costly
> initialization (external process call), which I need to do when the mode
> is enabled.
>
> But the turn-on function is getting called twice for each new opened
> buffer, once in default major mode, and once in the final major mode.
>
> What's the best way to turn on the minor mode only once?
> Currently I'm comparing major-mode value to the default value, but
> that's probably not the best solution, since the minor mode in question
> can apply to some fundamental-mode (or other default mode) buffers, too.
Why not just set a variable saying whether you've done the
initialization:
(defvar *my-mode-initialized* nil)
...
(if (not *my-mode-initialized*)
(progn
...
(setq *my-mode-initialized* t)))
--
Barry Margolin, barmar@alum.mit.edu
Arlington, MA
*** PLEASE post questions in newsgroups, not directly to me ***
next parent reply other threads:[~2012-07-11 3:20 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <mailman.4534.1341975266.855.help-gnu-emacs@gnu.org>
2012-07-11 3:20 ` Barry Margolin [this message]
2012-07-11 3:47 ` How do I initialize globalized minor mode only once? Dmitry Gutov
[not found] ` <mailman.4537.1341978452.855.help-gnu-emacs@gnu.org>
2012-07-11 13:47 ` Barry Margolin
2012-07-11 14:57 ` Dmitry Gutov
2012-07-11 2:54 Dmitry Gutov
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=barmar-A91477.23201110072012@news.eternal-september.org \
--to=barmar@alum.mit.edu \
--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.