Function: rcirc-cmd-ignore
rcirc-cmd-ignore is an interactive and byte-compiled function defined
in rcirc.el.gz.
Signature
(rcirc-cmd-ignore ARGLIST &optional PROCESS TARGET)
Documentation
Manage the ignore list.
Ignore NICK, unignore NICK if already ignored, or list ignored nicks when no NICK is given. When listing ignored nicks, the ones added to the list automatically are marked with an asterisk.
Note: If PROCESS or TARGET are nil, the values given
by rcirc-buffer-process and rcirc-target will be used.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/net/rcirc.el.gz
(rcirc-define-command ignore (nick)
"Manage the ignore list.
Ignore NICK, unignore NICK if already ignored, or list ignored
nicks when no NICK is given. When listing ignored nicks, the
ones added to the list automatically are marked with an asterisk."
(interactive "sToggle ignoring of nick: ")
(setq rcirc-ignore-list
(apply #'rcirc-add-or-remove rcirc-ignore-list
(split-string nick nil t)))
(rcirc-print process nil "IGNORE" target
(mapconcat
(lambda (nick)
(concat nick
(if (member nick rcirc-ignore-list-automatic)
"*" "")))
rcirc-ignore-list " ")))