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

This function is for internal use only.

Removes the user with nickname NICK from the erc-server-users hash table. This user is not removed from the erc-channel-users lists of other buffers.

See also: erc-remove-user.

Source Code

;; Defined in /usr/src/emacs/lisp/erc/erc.el.gz
(define-inline erc-remove-server-user (nick)
  "This function is for internal use only.

Removes the user with nickname NICK from the `erc-server-users'
hash table.  This user is not removed from the
`erc-channel-users' lists of other buffers.

See also: `erc-remove-user'."
  (inline-letevals (nick)
    (inline-quote
     (erc-with-server-buffer
       (remhash (erc-downcase ,nick) erc-server-users)))))