Function: macroexp--funcall-if-compiled

macroexp--funcall-if-compiled is a byte-compiled function defined in macroexp.el.gz.

Signature

(macroexp--funcall-if-compiled FORM)

Documentation

Pseudo function used internally by macroexp to delay warnings.

The purpose is to delay warnings to bytecomp.el, so they can use things like byte-compile-warn to get better file-and-line-number data and also to avoid outputting the warning during normal execution.

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/macroexp.el.gz
(defun macroexp--funcall-if-compiled (_form)
  "Pseudo function used internally by macroexp to delay warnings.
The purpose is to delay warnings to bytecomp.el, so they can use things
like `byte-compile-warn' to get better file-and-line-number data
and also to avoid outputting the warning during normal execution."
  nil)