Function: byte-compile-info-message

byte-compile-info-message is a byte-compiled function defined in byte-run.el.gz.

This function is obsolete since 28.1; use byte-compile-info instead.

Signature

(byte-compile-info-message &rest ARGS)

Documentation

Message format ARGS in a way that looks pleasing in the compilation output.

Probably introduced at or before Emacs version 27.1.

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/byte-run.el.gz
(defun byte-compile-info-message (&rest args)
  "Message format ARGS in a way that looks pleasing in the compilation output."
  (declare (obsolete byte-compile-info "28.1"))
  (byte-compile-info (apply #'format args) t))