aboutsummaryrefslogtreecommitdiffstats
path: root/lispref
diff options
context:
space:
mode:
authorStefan Monnier2006-03-15 22:26:09 +0000
committerStefan Monnier2006-03-15 22:26:09 +0000
commit4ffc92c2d8cffb5a8ed984bd2556ff7b124ccb0a (patch)
tree5380bc5eba8af29d5f8f4d9f028e0ff2ee4d8b8d /lispref
parent364d0cf80549428a8e1f880eab13e73e67cbdd69 (diff)
downloademacs-4ffc92c2d8cffb5a8ed984bd2556ff7b124ccb0a.tar.gz
emacs-4ffc92c2d8cffb5a8ed984bd2556ff7b124ccb0a.zip
* font-lock.el (font-lock-lines-before): Delete variable, subsumed by
the new extend-region feature. (font-lock-after-change-function): Update correspondingly. * jit-lock.el (jit-lock-after-change): Update correspondingly. * progmodes/grep.el (font-lock-lines-before): Don't disable. * modes.texi (Region to Fontify): Remove font-lock-lines-before.
Diffstat (limited to 'lispref')
-rw-r--r--lispref/ChangeLog16
-rw-r--r--lispref/modes.texi10
2 files changed, 10 insertions, 16 deletions
diff --git a/lispref/ChangeLog b/lispref/ChangeLog
index 70df1ae03f4..1ea4a73365c 100644
--- a/lispref/ChangeLog
+++ b/lispref/ChangeLog
@@ -1,3 +1,7 @@
12006-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
2
3 * modes.texi (Region to Fontify): Remove font-lock-lines-before.
4
12006-03-15 Bill Wohler <wohler@newt.com> 52006-03-15 Bill Wohler <wohler@newt.com>
2 6
3 * display.texi (Defining Images): Fix example in 7 * display.texi (Defining Images): Fix example in
@@ -14,7 +18,7 @@
14 18
15 * modes.texi: New node, "Region to Fontify" (for Font Lock). 19 * modes.texi: New node, "Region to Fontify" (for Font Lock).
16 This describes font-lock-extend-region-function. 20 This describes font-lock-extend-region-function.
17 ("Other Font Lock Variables"): move "font-lock-lines-before" to 21 ("Other Font Lock Variables"): Move "font-lock-lines-before" to
18 the new node "Region to Fontify". 22 the new node "Region to Fontify".
19 23
202006-03-13 Richard Stallman <rms@gnu.org> 242006-03-13 Richard Stallman <rms@gnu.org>
@@ -111,9 +115,9 @@
111 115
1122006-02-16 Johan Bockg,Ae(Brd <bojohan@dd.chalmers.se> 1162006-02-16 Johan Bockg,Ae(Brd <bojohan@dd.chalmers.se>
113 117
114 * display.texi (Other Display Specs, Image Descriptors): Revert 118 * display.texi (Other Display Specs, Image Descriptors):
115 erroneous changes. The previous description of image-descriptors 119 Revert erroneous changes. The previous description of
116 as `(image . PROPS)' was correct. 120 image-descriptors as `(image . PROPS)' was correct.
117 121
1182006-02-14 Richard M. Stallman <rms@gnu.org> 1222006-02-14 Richard M. Stallman <rms@gnu.org>
119 123
@@ -164,8 +168,8 @@
164 168
1652006-01-29 Chong Yidong <cyd@stupidchicken.com> 1692006-01-29 Chong Yidong <cyd@stupidchicken.com>
166 170
167 * display.texi (Other Display Specs, Image Descriptors): Image 171 * display.texi (Other Display Specs, Image Descriptors):
168 description is a list, not a cons cell. 172 Image description is a list, not a cons cell.
169 173
1702006-01-28 Luc Teirlinck <teirllm@auburn.edu> 1742006-01-28 Luc Teirlinck <teirllm@auburn.edu>
171 175
diff --git a/lispref/modes.texi b/lispref/modes.texi
index e15392ac85a..fc1953d24d9 100644
--- a/lispref/modes.texi
+++ b/lispref/modes.texi
@@ -2731,16 +2731,6 @@ on an earlier line.
2731You can enlarge (or even reduce) the region to fontify by setting either 2731You can enlarge (or even reduce) the region to fontify by setting either
2732of the following variables: 2732of the following variables:
2733 2733
2734@defvar font-lock-lines-before
2735This variable specifies the number of extra lines to consider when
2736refontifying the buffer after each text change. Font lock begins
2737refontifying from that number of lines before the changed region. The
2738default is 0, but using a larger value can be useful for coping with
2739multi-line patterns. This variable is ignored whenever
2740@code{font-lock-extend-region-function} is set and returns a
2741non-@code{nil} value.
2742@end defvar
2743
2744@defvar font-lock-extend-region-function 2734@defvar font-lock-extend-region-function
2745This buffer-local variable is either @code{nil} or is a function that 2735This buffer-local variable is either @code{nil} or is a function that
2746determines the region to fontify, which Emacs then calls after each 2736determines the region to fontify, which Emacs then calls after each