Function: flymake--state-disabled--cmacro
flymake--state-disabled--cmacro is a function defined in
flymake.el.gz.
Signature
(flymake--state-disabled--cmacro _CL-WHOLE-ARG CL-X)
Documentation
compiler-macro for inlining flymake--state-disabled.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/flymake.el.gz
;; Closure converted to defun by helpful.
(defun flymake--state-disabled--cmacro
(_cl-whole-arg cl-x)
"compiler-macro for inlining `flymake--state-disabled'."
(cl-block flymake--state-disabled--cmacro
(cl--defsubst-expand
'(cl-x)
'(cl-block flymake--state-disabled
(progn
(or
(flymake--state-p cl-x)
(signal 'wrong-type-argument
(list 'flymake--state cl-x)))
(aref cl-x 3)))
nil nil nil cl-x)))