aboutsummaryrefslogtreecommitdiff
path: root/tests/test-erc-config-connected-servers.el
Commit message (Collapse)AuthorAgeFilesLines
* fix(erc): one mention notification, real server list, runtime requireCraig Jennings8 days1-0/+48
Three audit defects. erc-modules carried the built-in notifications module while :config also added cj/erc-notify-on-mention to the same erc-text-matched-hook, so every mention popped two desktop notifications. Dropped notifications from erc-modules and kept the custom one. cj/erc-connected-servers compared a buffer's erc-server-process to itself inside with-current-buffer (always true), so it returned every ERC buffer; it now filters on erc-server-buffer-p and erc-server-process-alive. And user-constants moved from an eval-when-compile-only require to a runtime require, since user-whole-name is read at load time for erc-user-full-name.