Function: erc-get-server-user--inliner
erc-get-server-user--inliner is a function defined in
erc-common.el.gz.
Signature
(erc-get-server-user--inliner INLINE--FORM NICK)
Source Code
;; Defined in /usr/src/emacs/lisp/erc/erc-common.el.gz
;; Closure converted to defun by helpful.
(defun erc-get-server-user--inliner
(inline--form nick)
(ignore inline--form)
(catch 'inline--just-use
(let*
((exp nick)
(nick
(if
(macroexp-copyable-p exp)
exp
(make-symbol "nick")))
(body
(list 'erc-with-server-buffer
(list 'gethash
(list 'erc-downcase nick)
'erc-server-users))))
(if
(eq nick exp)
body
(macroexp-let*
(list
(list nick exp))
body)))))