Tweak implementation of byte-compile-info-message

* lisp/emacs-lisp/byte-run.el (byte-compile-info-message): Clean
up implementation.
This commit is contained in:
Lars Ingebrigtsen 2019-06-18 10:36:06 +02:00
parent 0f4d368f35
commit a5269a7fcf

View file

@ -542,7 +542,7 @@ Otherwise, return nil. For internal use only."
(defun byte-compile-info-message (&rest args)
"Message format ARGS in a way that looks pleasing in the compilation output."
(message "%s" (concat " INFO " (apply #'format args))))
(message " %-9s%s" "INFO" (apply #'format args)))
;; I nuked this because it's not a good idea for users to think of using it.