]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/emacs-lisp/bytecomp.el: Use `inhibit-message'
authorArtur Malabarba <bruce.connor.am@gmail.com>
Wed, 29 Apr 2015 08:47:07 +0000 (09:47 +0100)
committerArtur Malabarba <bruce.connor.am@gmail.com>
Wed, 29 Apr 2015 08:48:07 +0000 (09:48 +0100)
(byte-compile--message): Use `inhibit-message' instead of hiding
the previous message with (message nil).

lisp/emacs-lisp/bytecomp.el

index 51bbf8a2944e4bbfbb3f95ee78829531f667fcf0..d732c730bff850a94f94334e29aef07cdc1be072 100644 (file)
@@ -986,9 +986,8 @@ Each function's symbol gets added to `byte-compile-noruntime-functions'."
   "Like `message', except sometimes don't print to minibuffer.
 If the variable `byte-compile--interactive' is nil, the message
 is not displayed on the minibuffer."
-  (apply #'message format args)
-  (unless byte-compile--interactive
-    (message nil)))
+  (let ((inhibit-message (not byte-compile--interactive)))
+    (apply #'message format args)))
 
 ;; Log something that isn't a warning.
 (defun byte-compile-log-1 (string)