]> git.eshelyaron.com Git - emacs.git/commit
Make some module toggles more resilient in ERC
authorF. Jason Park <jp@neverwas.me>
Mon, 8 May 2023 02:43:57 +0000 (19:43 -0700)
committerF. Jason Park <jp@neverwas.me>
Sat, 13 May 2023 14:05:22 +0000 (07:05 -0700)
commit867b104010760c4b7cd700078884cc774a01860a
tree60e980b56bfb33169d792422ebf985c89bd8680e
parent75a412d78b6f4b4b68a7c649047cd28320110c09
Make some module toggles more resilient in ERC

* lisp/erc/erc-goodies.el (erc-scrolltobottom-mode,
erc-scrolltobottom-enable, erc-move-to-prompt-mode,
erc-move-to-prompt-enable): Guard setup procedure behind
`erc--updating-modules-p'.
* lisp/erc/erc-imenu.el (erc-imenu-mode, erc-imenu-enable,
erc-imenu-disable): Don't run setup when `erc--updating-modules-p' is
non-nil.  Also, don't restrict teardown to buffers of the same
process.
* lisp/erc/erc-match.el (erc-match-mode, erc-match-enable): Run
major-mode hook member immediately outside of `erc-update-modules' in
`erc-open'.
* lisp/erc/erc-spelling.el (erc-spelling-mode, erc-spelling-enable):
Only conditionally run setup immediately.
* lisp/erc/erc-stamp.el (erc-stamp-mode, erc-stamp-enable,
erc-stamp-disable): Run setup hook immediately.  Don't forget to
kill local vars in all ERC buffers during teardown.
* lisp/erc/erc.el (erc--updating-modules-p): New variable that global
modules can use to provide their `erc-mode-hook'-deferred code on
demand while shielding it from running during early ERC buffer
initialization.
(erc-open): Make `erc--updating-modules-p' non-nil while activating
global modules.  (Bug#60936)
lisp/erc/erc-goodies.el
lisp/erc/erc-imenu.el
lisp/erc/erc-match.el
lisp/erc/erc-spelling.el
lisp/erc/erc-stamp.el
lisp/erc/erc.el