mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-14 11:42:29 -08:00
(font-lock-mode): Change message telling the user
that ``the buffer is too big''.
This commit is contained in:
parent
1af25534b3
commit
afd3c8cd42
2 changed files with 5 additions and 1 deletions
|
|
@ -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.
|
||||
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue