Function: erc-remove-server-user
erc-remove-server-user is a byte-compiled function defined in
erc.el.gz.
Signature
(erc-remove-server-user NICK)
Documentation
Remove NICK from the session's erc-server-users table.
Source Code
;; Defined in /usr/src/emacs/lisp/erc/erc.el.gz
(defun erc-remove-server-user (nick)
"Remove NICK from the session's `erc-server-users' table."
(erc-with-server-buffer
(remhash (erc-downcase nick) erc-server-users)))