From 1787769bcc30584809916593e35412771f39043a Mon Sep 17 00:00:00 2001 From: Simon Marshall Date: Wed, 6 Jan 1999 10:08:49 +0000 Subject: [PATCH] * font-lock.el (font-lock-default-fontify-buffer): When using with-temp-message, use nil rather than current-message. --- lisp/font-lock.el | 5 ++--- 1 file 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)) -- 2.39.2