Function: rcirc-cmd-bright
rcirc-cmd-bright is an interactive and byte-compiled function defined
in rcirc.el.gz.
Signature
(rcirc-cmd-bright ARGLIST &optional PROCESS TARGET)
Documentation
Manage the bright nick list.
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 bright (nick)
"Manage the bright nick list."
(interactive "sToggle emphasis of nick: ")
(setq rcirc-bright-nicks
(apply #'rcirc-add-or-remove rcirc-bright-nicks
(split-string nick nil t)))
(rcirc-print process nil "BRIGHT" target
(mapconcat 'identity rcirc-bright-nicks " ")))