Function: erc-add-server-user

erc-add-server-user is a byte-compiled function defined in erc.el.gz.

Signature

(erc-add-server-user NICK USER)

Documentation

This function is for internal use only.

Adds USER with nickname NICK to the erc-server-users hash table.

Source Code

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

Adds USER with nickname NICK to the `erc-server-users' hash table."
  (erc-with-server-buffer
    (puthash (erc-downcase nick) user erc-server-users)))