emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] master a5269a7: Tweak implementation of byte-compile-info-


From: Lars Ingebrigtsen
Subject: [Emacs-diffs] master a5269a7: Tweak implementation of byte-compile-info-message
Date: Tue, 18 Jun 2019 04:36:26 -0400 (EDT)

branch: master
commit a5269a7fcf16d5bd9c4cd557ab933797bbdabff9
Author: Lars Ingebrigtsen <address@hidden>
Commit: Lars Ingebrigtsen <address@hidden>

    Tweak implementation of byte-compile-info-message
    
    * lisp/emacs-lisp/byte-run.el (byte-compile-info-message): Clean
    up implementation.
---
 lisp/emacs-lisp/byte-run.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lisp/emacs-lisp/byte-run.el b/lisp/emacs-lisp/byte-run.el
index 30a9f98..96cff2e 100644
--- a/lisp/emacs-lisp/byte-run.el
+++ b/lisp/emacs-lisp/byte-run.el
@@ -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.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]