diff options
| -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." | |||
| 542 | 542 | ||
| 543 | (defun byte-compile-info-message (&rest args) | 543 | (defun byte-compile-info-message (&rest args) |
| 544 | "Message format ARGS in a way that looks pleasing in the compilation output." | 544 | "Message format ARGS in a way that looks pleasing in the compilation output." |
| 545 | (message "%s" (concat " INFO " (apply #'format args)))) | 545 | (message " %-9s%s" "INFO" (apply #'format args))) |
| 546 | 546 | ||
| 547 | 547 | ||
| 548 | ;; I nuked this because it's not a good idea for users to think of using it. | 548 | ;; I nuked this because it's not a good idea for users to think of using it. |