Function: erc-channel-user-admin-p--inliner
erc-channel-user-admin-p--inliner is a function defined in erc.el.gz.
Signature
(erc-channel-user-admin-p--inliner INLINE--FORM NICK)
Source Code
;; Defined in /usr/src/emacs/lisp/erc/erc.el.gz
;; Closure converted to defun by helpful.
(defun erc-channel-user-admin-p--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 'and nick
(list 'hash-table-p 'erc-channel-users)
(list 'let
(list
(list 'cdata
(list 'erc-get-channel-user nick)))
(list 'and 'cdata
(list 'cdr 'cdata)
(list 'erc-channel-user-admin
(list 'cdr 'cdata)))))))
(if
(eq nick exp)
body
(macroexp-let*
(list
(list nick exp))
body)))))