Variable: erc-track-exclude-types

erc-track-exclude-types is a customizable variable defined in erc-track.el.gz.

Value

("NICK" "333" "353")

Documentation

List of message types to be ignored.

This list could look like ("JOIN" "PART").

By default, exclude changes of nicknames (NICK), display of who set the channel topic (333), and listing of users on the current channel (353).

Source Code

;; Defined in /usr/src/emacs/lisp/erc/erc-track.el.gz
(defcustom erc-track-exclude-types '("NICK" "333" "353")
  "List of message types to be ignored.
This list could look like (\"JOIN\" \"PART\").

By default, exclude changes of nicknames (NICK), display of who
set the channel topic (333), and listing of users on the current
channel (353)."
  :type 'erc-message-type)