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
99327974
Commit
99327974
authored
Jan 19, 2001
by
Gerd Moellmann
Browse files
(jit-lock-after-change): If font-lock-multiline
is nil, don't check the `font-lock-multiline' text property.
parent
8501998a
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
1 deletion
+7
-1
lisp/ChangeLog
lisp/ChangeLog
+5
-0
lisp/jit-lock.el
lisp/jit-lock.el
+2
-1
No files found.
lisp/ChangeLog
View file @
99327974
2001-01-19 Gerd Moellmann <gerd@gnu.org>
* jit-lock.el (jit-lock-after-change): If font-lock-multiline
is nil, don't check the `font-lock-multiline' text property.
2001-01-19 Michael Kifer <kifer@cs.sunysb.edu>
* viper.el: Call initial-major-mode on startup.
...
...
lisp/jit-lock.el
View file @
99327974
...
...
@@ -422,7 +422,8 @@ will take place when text is fontified stealthily."
(
with-buffer-prepared-for-jit-lock
;; If we're in text that matches a multi-line font-lock pattern,
;; make sure the whole text will be redisplayed.
(
when
(
get-text-property
start
'font-lock-multiline
)
(
when
(
and
font-lock-multiline
(
get-text-property
start
'font-lock-multiline
))
(
setq
start
(
or
(
previous-single-property-change
start
'font-lock-multiline
)
(
point-min
))))
...
...
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