Variable: erc-channel-banlist

erc-channel-banlist is a buffer-local variable defined in erc.el.gz.

Documentation

A list of bans seen for the current channel.

Entries are cons cells of the form (OP . MASK), where OP is the channel operator who issued the ban. Modules needing such a list should call erc-sync-banlist once per session in the channel before accessing the variable. Interactive users need only issue a /BANLIST. Note that older versions of ERC relied on a deprecated convention involving a property of the symbol erc-channel-banlist to indicate whether a ban list had been received in full; this was found to be unreliable.

Source Code

;; Defined in /usr/src/emacs/lisp/erc/erc.el.gz
;;; Banlists

(defvar-local erc-channel-banlist nil
  "A list of bans seen for the current channel.
Entries are cons cells of the form (OP . MASK), where OP is the channel
operator who issued the ban.  Modules needing such a list should call
`erc-sync-banlist' once per session in the channel before accessing the
variable.  Interactive users need only issue a /BANLIST.  Note that
older versions of ERC relied on a deprecated convention involving a
property of the symbol `erc-channel-banlist' to indicate whether a ban
list had been received in full; this was found to be unreliable.")