Function: compilation--make-message--cmacro

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

Signature

(compilation--make-message--cmacro _CL-WHOLE-ARG LOC TYPE END-LOC RULE)

Documentation

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

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/compile.el.gz
;; Closure converted to defun by helpful.
(defun compilation--make-message--cmacro
    (_cl-whole-arg loc type end-loc rule)
  "compiler-macro for inlining `compilation--make-message'."
  (cl-block compilation--make-message--cmacro
    (cl--defsubst-expand
     '(loc type end-loc rule)
     '(cl-block compilation--make-message
	(record 'compilation--message loc type end-loc rule))
     nil nil nil loc type end-loc rule)))