]> git.eshelyaron.com Git - emacs.git/commitdiff
Tweak implementation of byte-compile-info-message
authorLars Ingebrigtsen <larsi@gnus.org>
Tue, 18 Jun 2019 08:36:06 +0000 (10:36 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Tue, 18 Jun 2019 08:36:14 +0000 (10:36 +0200)
* lisp/emacs-lisp/byte-run.el (byte-compile-info-message): Clean
up implementation.

lisp/emacs-lisp/byte-run.el

index 30a9f984793c3dd2ebef5efb5cb7c2889e90057d..96cff2ebeb26a034005b56119ccd9e18cef28420 100644 (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)))
 
 \f
 ;; I nuked this because it's not a good idea for users to think of using it.