]> git.eshelyaron.com Git - emacs.git/commitdiff
* font-lock.el (font-lock-default-fontify-buffer): When using
authorSimon Marshall <simon@gnu.org>
Wed, 6 Jan 1999 10:08:49 +0000 (10:08 +0000)
committerSimon Marshall <simon@gnu.org>
Wed, 6 Jan 1999 10:08:49 +0000 (10:08 +0000)
        with-temp-message, use nil rather than current-message.

lisp/font-lock.el

index 7c201f075da8d869c54a273993f625c491eb2b07..36ed0c0570abbd12c9e228e781639dc14c4eff7e 100644 (file)
@@ -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))