Function: byte-compile-info-string
byte-compile-info-string 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-string &rest ARGS)
Documentation
Format ARGS in a way that looks pleasing in the compilation output.
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/byte-run.el.gz
(defun byte-compile-info-string (&rest args)
"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)))