]> git.eshelyaron.com Git - emacs.git/commit
Simplify erc-button-add-nickname-buttons
authorF. Jason Park <jp@neverwas.me>
Sat, 1 Jul 2023 06:42:01 +0000 (23:42 -0700)
committerF. Jason Park <jp@neverwas.me>
Fri, 14 Jul 2023 01:45:31 +0000 (18:45 -0700)
commit4f3d036957a754f2e870fc54c7e3f539d215e57e
tree42c18e2d3f2dfc117fbb874acbe16b510f82a192
parent4d6ed774fef6c6630738761356ea274b5a18fb62
Simplify erc-button-add-nickname-buttons

* lisp/erc/erc-button.el (erc-button--nick): Remove `face' slot, which
was set to `erc-button-face' by default.  It's ignored when the button
is a nick and thus useless and misleading.
(erc-button-add-nickname-buttons): Rework and reflow for readability.
Don't bind or set `erc-button' face because it's ignored when dealing
with nicks.  Don't return the value of face options when calling a
`form' function because they can be nil in practice even though their
Custom type specs do not say so.
* lisp/erc/erc-common.el (erc--with-dependent-type-match): Add helper
macro for Custom :type defs that incur warnings from `setopt' due to
some missing dependency.  This occurs when specifying a :type of
`face' instead of `symbol' and the option's default value includes
faces from another library that hasn't been loaded.
* lisp/erc/erc.el (erc--get-speaker-bounds): New helper function to
retrieve bounds of a speaker label when present.
* test/lisp/erc/erc-tests.el (erc--with-dependent-type-match): Add
test.  (Bug#64301)
lisp/erc/erc-button.el
lisp/erc/erc-common.el
lisp/erc/erc.el
test/lisp/erc/erc-tests.el