]> git.eshelyaron.com Git - emacs.git/commitdiff
Warn when toggling erc-nicks-mode in target buffers
authorF. Jason Park <jp@neverwas.me>
Wed, 19 Jul 2023 05:18:00 +0000 (22:18 -0700)
committerF. Jason Park <jp@neverwas.me>
Wed, 19 Jul 2023 13:11:21 +0000 (06:11 -0700)
* lisp/erc/erc-nicks.el (erc-nicks-mode, erc-nicks-enable): This local
module isn't autoloaded like most global modules, in part to dissuade
users from attempting to enable it by running M-x erc-nicks-mode RET.
However, rather than signal an error upon detecting such an attempt,
ERC should explain that the only supported means of activation is via
`erc-modules'.  This change does that and then enables it anyway,
despite the degraded experience.

lisp/erc/erc-nicks.el

index 3f753adc6252d764ea399f6532c21ba41f77a59a..67f513f8d3eab0896a77df4cce4df025e0d17fa5 100644 (file)
@@ -480,6 +480,12 @@ Abandon search after examining LIMIT faces."
   "Uniquely colorize nicknames in target buffers."
   ((if erc--target
        (progn
+         (erc-with-server-buffer
+           (unless erc-nicks-mode
+             (erc--warn-once-before-connect 'erc-nicks-mode
+               "Module `nicks' must be enabled or disabled session-wide."
+               " Toggling it in individual target buffers is unsupported.")
+             (erc-nicks-mode +1))) ; but do it anyway
          (setq erc-nicks--downcased-skip-nicks
                (mapcar #'erc-downcase erc-nicks-skip-nicks))
          (add-function :filter-return (local 'erc-button--modify-nick-function)