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