Variable: rcirc-bridge-bot-alist
rcirc-bridge-bot-alist is a customizable variable defined in
rcirc.el.gz.
Value
nil
Documentation
Alist for handling bouncers by rcirc-markup-bridge-bots.
Each entry has the form (NAME . REGEXP), where NAME is the user name of a bouncer and REGEXP is a pattern used to match the message. The matching part of the message will be stripped from the message, and the first match group will replace the user name of the bot. Any matched name will noted and used in some cases for nick completion.
This variable was added, or its default value changed, in Emacs 29.1.
Probably introduced at or before Emacs version 29.1.
Source Code
;; Defined in /usr/src/emacs/lisp/net/rcirc.el.gz
(defcustom rcirc-bridge-bot-alist '()
"Alist for handling bouncers by `rcirc-markup-bridge-bots'.
Each entry has the form (NAME . REGEXP), where NAME is the user
name of a bouncer and REGEXP is a pattern used to match the
message. The matching part of the message will be stripped from
the message, and the first match group will replace the user name
of the bot. Any matched name will noted and used in some cases
for nick completion."
:type '(alist :key-type (string :tag "Bot name")
:value-type regexp)
:version "29.1")