diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2019-06-18 10:36:06 +0200 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2019-06-18 10:36:14 +0200 |
commit | a5269a7fcf16d5bd9c4cd557ab933797bbdabff9 (patch) | |
tree | b40d16bf11db6ae2f9fc8feb318bcf460ed30fd0 /lisp/emacs-lisp/byte-run.el | |
parent | 0f4d368f3500fe8e3ac8f9a0d5ab1ca95f1ef2d0 (diff) | |
download | emacs-a5269a7fcf16d5bd9c4cd557ab933797bbdabff9.tar.gz emacs-a5269a7fcf16d5bd9c4cd557ab933797bbdabff9.tar.bz2 emacs-a5269a7fcf16d5bd9c4cd557ab933797bbdabff9.zip |
Tweak implementation of byte-compile-info-message
* lisp/emacs-lisp/byte-run.el (byte-compile-info-message): Clean
up implementation.
Diffstat (limited to 'lisp/emacs-lisp/byte-run.el')
-rw-r--r-- | lisp/emacs-lisp/byte-run.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/byte-run.el b/lisp/emacs-lisp/byte-run.el index 30a9f984793..96cff2ebeb2 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. |