Function: erc-channel-user-p--cmacro
erc-channel-user-p--cmacro is a function defined in erc.el.gz.
Signature
(erc-channel-user-p--cmacro _CL-WHOLE-ARG CL-X)
Documentation
compiler-macro for inlining erc-channel-user-p.
Source Code
;; Defined in /usr/src/emacs/lisp/erc/erc.el.gz
;; Closure converted to defun by helpful.
(defun erc-channel-user-p--cmacro
(_cl-whole-arg cl-x)
"compiler-macro for inlining `erc-channel-user-p'."
(cl-block erc-channel-user-p--cmacro
(cl--defsubst-expand
'(cl-x)
'(cl-block erc-channel-user-p
(and
(vectorp cl-x)
(>=
(length cl-x)
7)
(memq
(aref cl-x 0)
cl-struct-erc-channel-user-tags)
t))
nil nil nil cl-x)))