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