Function: compilation--message-p--cmacro

compilation--message-p--cmacro is a function defined in compile.el.gz.

Signature

(compilation--message-p--cmacro _CL-WHOLE-ARG CL-X)

Documentation

compiler-macro for inlining compilation--message-p.

Source Code

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