Function: rcirc-nick-remove
rcirc-nick-remove is a byte-compiled function defined in rcirc.el.gz.
Signature
(rcirc-nick-remove PROCESS NICK)
Documentation
Remove NICK from table.
PROCESS is the process object for the current connection.
Source Code
;; Defined in /usr/src/emacs/lisp/net/rcirc.el.gz
(defun rcirc-nick-remove (process nick)
"Remove NICK from table.
PROCESS is the process object for the current connection."
(with-rcirc-process-buffer process
(remhash nick rcirc-nick-table)))