Function: erc-get-server-user
erc-get-server-user is a byte-compiled function defined in
erc-common.el.gz.
Signature
(erc-get-server-user NICK)
Documentation
Find NICK in the current server's erc-server-users hash table.
Source Code
;; Defined in /usr/src/emacs/lisp/erc/erc-common.el.gz
(define-inline erc-get-server-user (nick)
"Find NICK in the current server's `erc-server-users' hash table."
(inline-letevals (nick)
(inline-quote (erc-with-server-buffer
(gethash (erc-downcase ,nick) erc-server-users)))))