]> git.eshelyaron.com Git - emacs.git/commitdiff
(font-lock-mode): Change message telling the user
authorGerd Moellmann <gerd@gnu.org>
Tue, 19 Sep 2000 11:03:14 +0000 (11:03 +0000)
committerGerd Moellmann <gerd@gnu.org>
Tue, 19 Sep 2000 11:03:14 +0000 (11:03 +0000)
that ``the buffer is too big''.

lisp/ChangeLog
lisp/font-lock.el

index 9a59fdfeb6dd718b6301f992d0087ee209e806aa..022505241165373889c59440a2109192f7c0aa2b 100644 (file)
@@ -1,5 +1,8 @@
 2000-09-19  Gerd Moellmann  <gerd@gnu.org>
 
+       * font-lock.el (font-lock-mode): Change message telling the user
+       that ``the buffer is too big''.
+
        * dired.el (dired-font-lock-keywords): Allow tabs and spaces,
        for instance for the case that tab-width is 2.
 
index e030cc9ca33025b79666b3eb70fc70000805269f..aa6c0524c51a878803d683ee3ffb13d0eff9220f 100644 (file)
@@ -720,7 +720,8 @@ buffer local value for `font-lock-defaults', via its mode hook."
              ((or (null max-size) (> max-size (buffer-size)))
               (font-lock-fontify-buffer))
              (font-lock-verbose
-              (message "Fontifying %s...buffer too big" (buffer-name))))))
+              (message "Fontifying %s...buffer size greater than font-lock-maximum-size"
+                       (buffer-name))))))
     ;; Turn off Font Lock mode.
     (unless on-p
       (remove-hook 'after-change-functions 'font-lock-after-change-function t)