aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGerd Moellmann2001-01-19 13:36:03 +0000
committerGerd Moellmann2001-01-19 13:36:03 +0000
commit2be6ecc60ec712d524f793c936b9be07530a3181 (patch)
tree153bf5a05a37993eb6d0635f2a0eb0be9a2eace2
parentf926102066802f69bf6d1be25cf8841f8be92cee (diff)
downloademacs-2be6ecc60ec712d524f793c936b9be07530a3181.tar.gz
emacs-2be6ecc60ec712d524f793c936b9be07530a3181.zip
*** empty log message ***
-rw-r--r--etc/NEWS3
-rw-r--r--lisp/ChangeLog4
2 files changed, 6 insertions, 1 deletions
diff --git a/etc/NEWS b/etc/NEWS
index 3501994e8a6..5bad5a96bf0 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -958,7 +958,8 @@ Version numbers are only found in the first 10 percent of a file.
958*** The new function `font-lock-remove-keywords' can be used to remove 958*** The new function `font-lock-remove-keywords' can be used to remove
959font-lock keywords from the current buffer or from a specific major mode. 959font-lock keywords from the current buffer or from a specific major mode.
960 960
961*** multiline patterns are now supported. 961*** Multiline patterns are now supported. Modes using this, should
962set font-lock-multiline to t in their font-lock-defaults.
962 963
963*** `font-lock-syntactic-face-function' allows major-modes to choose 964*** `font-lock-syntactic-face-function' allows major-modes to choose
964the face used for each string/comment. 965the face used for each string/comment.
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 0122867cd19..b5595103bbb 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,9 @@
12001-01-19 Gerd Moellmann <gerd@gnu.org> 12001-01-19 Gerd Moellmann <gerd@gnu.org>
2 2
3 * font-lock.el (font-lock-multiline): Default to nil.
4 (font-lock-default-fontify-region): If font-lock-multiline is
5 nil, don't check the property `font-lock-multiline'.
6
3 * jit-lock.el (jit-lock-after-change): If font-lock-multiline 7 * jit-lock.el (jit-lock-after-change): If font-lock-multiline
4 is nil, don't check the `font-lock-multiline' text property. 8 is nil, don't check the `font-lock-multiline' text property.
5 9