Function: flymake--state-p--cmacro

flymake--state-p--cmacro is a function defined in flymake.el.gz.

Signature

(flymake--state-p--cmacro _CL-WHOLE-ARG CL-X)

Documentation

compiler-macro for inlining flymake--state-p.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/flymake.el.gz
;; Closure converted to defun by helpful.
(defun flymake--state-p--cmacro
    (_cl-whole-arg cl-x)
  "compiler-macro for inlining `flymake--state-p'."
  (cl-block flymake--state-p--cmacro
    (cl--defsubst-expand
     '(cl-x)
     '(cl-block flymake--state-p
	(and
	 (memq
	  (type-of cl-x)
	  cl-struct-flymake--state-tags)
	 t))
     nil nil nil cl-x)))