diff options
| author | Gregory Heytings | 2022-07-29 08:11:10 +0000 |
|---|---|---|
| committer | Gregory Heytings | 2022-07-29 10:15:06 +0200 |
| commit | cdaa3b51f1500ca1d91452037efe68fa0f7808bc (patch) | |
| tree | 305a98ddcf9a72ab00f2eae459abdc222ff66358 /src | |
| parent | c6029ed34ea83c7c0adbd723d63bd78ff0ec0796 (diff) | |
| download | emacs-feature/long-lines-and-font-locking.tar.gz emacs-feature/long-lines-and-font-locking.zip | |
Further minor improvements of documentationfeature/long-lines-and-font-locking
* src/xdisp.c (syms_of_xdisp) <fontification-functions>:
* etc/NEWS: Further minor wording improvements.
Diffstat (limited to 'src')
| -rw-r--r-- | src/xdisp.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/xdisp.c b/src/xdisp.c index 3ef3c0d3796..e13d68eab9d 100644 --- a/src/xdisp.c +++ b/src/xdisp.c | |||
| @@ -36656,10 +36656,10 @@ fontify a region starting at POS in the current buffer, and give | |||
| 36656 | fontified regions the property `fontified' with a non-nil value. | 36656 | fontified regions the property `fontified' with a non-nil value. |
| 36657 | 36657 | ||
| 36658 | Note that, when the buffer contains one or more lines whose length is | 36658 | Note that, when the buffer contains one or more lines whose length is |
| 36659 | above `long-line-threshold', the narrowing of the buffer is locked | 36659 | above `long-line-threshold', these functions only have access to a |
| 36660 | (see `narrow-to-region'), and these functions only have access to a | 36660 | small portion of the buffer around POS, and cannot use `widen' to gain |
| 36661 | small portion of the buffer around POS and cannot use `widen' to gain | 36661 | access to other portions of buffer text because the narrowing of the |
| 36662 | access to other portions of buffer text. */); | 36662 | buffer is locked (see `narrow-to-region'). */); |
| 36663 | Vfontification_functions = Qnil; | 36663 | Vfontification_functions = Qnil; |
| 36664 | Fmake_variable_buffer_local (Qfontification_functions); | 36664 | Fmake_variable_buffer_local (Qfontification_functions); |
| 36665 | 36665 | ||