Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
afd3c8cd
Commit
afd3c8cd
authored
Sep 19, 2000
by
Gerd Moellmann
Browse files
(font-lock-mode): Change message telling the user
that ``the buffer is too big''.
parent
1af25534
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletion
+5
-1
lisp/ChangeLog
lisp/ChangeLog
+3
-0
lisp/font-lock.el
lisp/font-lock.el
+2
-1
No files found.
lisp/ChangeLog
View file @
afd3c8cd
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.
...
...
lisp/font-lock.el
View file @
afd3c8cd
...
...
@@ -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
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment