diff options
-rw-r--r-- | lisp/font-lock.el | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lisp/font-lock.el b/lisp/font-lock.el index 7c201f075da..36ed0c0570a 100644 --- a/lisp/font-lock.el +++ b/lisp/font-lock.el @@ -1032,9 +1032,8 @@ The value of this variable is used when Font Lock mode is turned on." (> (buffer-size) font-lock-verbose) font-lock-verbose))) (with-temp-message - (if verbose - (format "Fontifying %s..." (buffer-name)) - (current-message)) + (when verbose + (format "Fontifying %s..." (buffer-name))) ;; Make sure we have the right `font-lock-keywords' etc. (unless font-lock-mode (font-lock-set-defaults)) |