aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorF. Jason Park2024-10-11 18:12:16 -0700
committerF. Jason Park2024-10-18 18:37:57 -0700
commitb00f400d1d3f954e460ea979f07f38f6bb31630e (patch)
tree2bdaa76f9341fca3d37a0b79ebd9618d70a76ef9 /doc
parent1374f20491bbf0c37760cdb84f6020f80fe4eadd (diff)
downloademacs-b00f400d1d3f954e460ea979f07f38f6bb31630e.tar.gz
emacs-b00f400d1d3f954e460ea979f07f38f6bb31630e.zip
; Undo erroneous change in ERC's sample configuration
* doc/misc/erc.texi (Sample Configuration): Remove `erc-modules' from the `:custom' section of the `use-package' declaration for feature `erc' because its presence there depends on `:defer' being non-nil, and this configuration is supposed to be `:defer' agnostic. This reverts part of 3f1ce47f "; Add face customization to ERC's sample config". * etc/ERC-NEWS: Mention `erc-modules' no longer being autoloaded. * lisp/erc/erc-match.el (erc-text-matched-hooks): Explain expected format of non-NUH matches. * test/lisp/erc/erc-match-tests.el (test/lisp/erc/erc-match-tests.el): Inhibit messages when running non-interactively.
Diffstat (limited to 'doc')
-rw-r--r--doc/misc/erc.texi11
1 files changed, 7 insertions, 4 deletions
diff --git a/doc/misc/erc.texi b/doc/misc/erc.texi
index 9368c9ce070..939d93d6aa8 100644
--- a/doc/misc/erc.texi
+++ b/doc/misc/erc.texi
@@ -1324,11 +1324,14 @@ settings (@pxref{Sample configuration via Customize}).
1324;;; My ERC configuration -*- lexical-binding: t -*- 1324;;; My ERC configuration -*- lexical-binding: t -*-
1325 1325
1326(use-package erc 1326(use-package erc
1327 :custom 1327 :config
1328 ;; Prefer SASL to NickServ, colorize nicknames, and show side panels 1328 ;; Prefer SASL to NickServ, colorize nicknames, and show side panels
1329 ;; with joined channels and members. 1329 ;; with joined channels and members
1330 (erc-modules (append '(sasl nicks bufbar nickbar scrolltobottom) 1330 (setopt erc-modules
1331 erc-modules)) 1331 (seq-union '(sasl nicks bufbar nickbar scrolltobottom)
1332 erc-modules))
1333
1334 :custom
1332 ;; Protect me from accidentally sending excess lines. 1335 ;; Protect me from accidentally sending excess lines.
1333 (erc-inhibit-multiline-input t) 1336 (erc-inhibit-multiline-input t)
1334 (erc-send-whitespace-lines t) 1337 (erc-send-whitespace-lines t)