diff options
| author | Stefan Monnier | 2011-05-06 11:32:26 -0300 |
|---|---|---|
| committer | Stefan Monnier | 2011-05-06 11:32:26 -0300 |
| commit | bc3bea9cf0a5a074fc16aa16d4145567d4c5d183 (patch) | |
| tree | 415df1cf141d2587d3cc21a10dba6d901cefbec7 | |
| parent | e6dc6206e96b5d1774f9f431b49f7879415e6edb (diff) | |
| download | emacs-bc3bea9cf0a5a074fc16aa16d4145567d4c5d183.tar.gz emacs-bc3bea9cf0a5a074fc16aa16d4145567d4c5d183.zip | |
* lispref/modes.texi (Region to Refontify): Rename from "Region to Fontify".
(Multiline Font Lock):
* lispref/vol2.texi (Top):
* lispref/vol1.texi (Top):
* lispref/elisp.texi (Top): Update menu accordingly.
| -rw-r--r-- | doc/lispref/ChangeLog | 8 | ||||
| -rw-r--r-- | doc/lispref/elisp.texi | 2 | ||||
| -rw-r--r-- | doc/lispref/modes.texi | 8 | ||||
| -rw-r--r-- | doc/lispref/vol1.texi | 2 | ||||
| -rw-r--r-- | doc/lispref/vol2.texi | 2 |
5 files changed, 15 insertions, 7 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog index c564c780b53..c8a45ffc4d3 100644 --- a/doc/lispref/ChangeLog +++ b/doc/lispref/ChangeLog | |||
| @@ -1,3 +1,11 @@ | |||
| 1 | 2011-05-06 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 2 | |||
| 3 | * modes.texi (Region to Refontify): Rename from "Region to Fontify". | ||
| 4 | (Multiline Font Lock): | ||
| 5 | * vol2.texi (Top): | ||
| 6 | * vol1.texi (Top): | ||
| 7 | * elisp.texi (Top): Update menu accordingly. | ||
| 8 | |||
| 1 | 2011-05-05 Drew Adams <drew.adams@oracle.com> | 9 | 2011-05-05 Drew Adams <drew.adams@oracle.com> |
| 2 | 10 | ||
| 3 | * modes.texi (Region to Fontify): Fix typo. | 11 | * modes.texi (Region to Fontify): Fix typo. |
diff --git a/doc/lispref/elisp.texi b/doc/lispref/elisp.texi index 9b2b4817e27..93a8acdff0c 100644 --- a/doc/lispref/elisp.texi +++ b/doc/lispref/elisp.texi | |||
| @@ -825,7 +825,7 @@ Font Lock Mode | |||
| 825 | Multiline Font Lock Constructs | 825 | Multiline Font Lock Constructs |
| 826 | 826 | ||
| 827 | * Font Lock Multiline:: Marking multiline chunks with a text property. | 827 | * Font Lock Multiline:: Marking multiline chunks with a text property. |
| 828 | * Region to Fontify:: Controlling which region gets refontified | 828 | * Region to Refontify:: Controlling which region gets refontified |
| 829 | after a buffer change. | 829 | after a buffer change. |
| 830 | 830 | ||
| 831 | Documentation | 831 | Documentation |
diff --git a/doc/lispref/modes.texi b/doc/lispref/modes.texi index 61c8b5be129..1c72619c833 100644 --- a/doc/lispref/modes.texi +++ b/doc/lispref/modes.texi | |||
| @@ -3143,7 +3143,7 @@ subsequent lines. | |||
| 3143 | 3143 | ||
| 3144 | @menu | 3144 | @menu |
| 3145 | * Font Lock Multiline:: Marking multiline chunks with a text property. | 3145 | * Font Lock Multiline:: Marking multiline chunks with a text property. |
| 3146 | * Region to Fontify:: Controlling which region gets refontified | 3146 | * Region to Refontify:: Controlling which region gets refontified |
| 3147 | after a buffer change. | 3147 | after a buffer change. |
| 3148 | @end menu | 3148 | @end menu |
| 3149 | 3149 | ||
| @@ -3195,7 +3195,7 @@ place the @code{font-lock-multiline} property on the text before | |||
| 3195 | Font-Lock looks at it, or use | 3195 | Font-Lock looks at it, or use |
| 3196 | @code{font-lock-fontify-region-function}. | 3196 | @code{font-lock-fontify-region-function}. |
| 3197 | 3197 | ||
| 3198 | @node Region to Fontify | 3198 | @node Region to Refontify |
| 3199 | @subsubsection Region to Fontify after a Buffer Change | 3199 | @subsubsection Region to Fontify after a Buffer Change |
| 3200 | 3200 | ||
| 3201 | When a buffer is changed, the region that Font Lock refontifies is | 3201 | When a buffer is changed, the region that Font Lock refontifies is |
| @@ -3204,7 +3204,7 @@ While this works well most of the time, sometimes it doesn't---for | |||
| 3204 | example, when a change alters the syntactic meaning of text on an | 3204 | example, when a change alters the syntactic meaning of text on an |
| 3205 | earlier line. | 3205 | earlier line. |
| 3206 | 3206 | ||
| 3207 | You can enlarge (or even reduce) the region to fontify by setting | 3207 | You can enlarge (or even reduce) the region to refontify by setting |
| 3208 | the following variable: | 3208 | the following variable: |
| 3209 | 3209 | ||
| 3210 | @defvar font-lock-extend-after-change-region-function | 3210 | @defvar font-lock-extend-after-change-region-function |
| @@ -3212,7 +3212,7 @@ This buffer-local variable is either @code{nil} or a function for | |||
| 3212 | Font-Lock to call to determine the region to scan and fontify. | 3212 | Font-Lock to call to determine the region to scan and fontify. |
| 3213 | 3213 | ||
| 3214 | The function is given three parameters, the standard @var{beg}, | 3214 | The function is given three parameters, the standard @var{beg}, |
| 3215 | @var{end}, and @var{old-len} from after-change-functions | 3215 | @var{end}, and @var{old-len} from @code{after-change-functions} |
| 3216 | (@pxref{Change Hooks}). It should return either a cons of the | 3216 | (@pxref{Change Hooks}). It should return either a cons of the |
| 3217 | beginning and end buffer positions (in that order) of the region to | 3217 | beginning and end buffer positions (in that order) of the region to |
| 3218 | fontify, or @code{nil} (which means choose the region in the standard | 3218 | fontify, or @code{nil} (which means choose the region in the standard |
diff --git a/doc/lispref/vol1.texi b/doc/lispref/vol1.texi index 8454e633c78..d6bc4538adb 100644 --- a/doc/lispref/vol1.texi +++ b/doc/lispref/vol1.texi | |||
| @@ -846,7 +846,7 @@ Font Lock Mode | |||
| 846 | Multiline Font Lock Constructs | 846 | Multiline Font Lock Constructs |
| 847 | 847 | ||
| 848 | * Font Lock Multiline:: Marking multiline chunks with a text property. | 848 | * Font Lock Multiline:: Marking multiline chunks with a text property. |
| 849 | * Region to Fontify:: Controlling which region gets refontified | 849 | * Region to Refontify:: Controlling which region gets refontified |
| 850 | after a buffer change. | 850 | after a buffer change. |
| 851 | 851 | ||
| 852 | Documentation | 852 | Documentation |
diff --git a/doc/lispref/vol2.texi b/doc/lispref/vol2.texi index f481523b981..6f7507eb40c 100644 --- a/doc/lispref/vol2.texi +++ b/doc/lispref/vol2.texi | |||
| @@ -845,7 +845,7 @@ Font Lock Mode | |||
| 845 | Multiline Font Lock Constructs | 845 | Multiline Font Lock Constructs |
| 846 | 846 | ||
| 847 | * Font Lock Multiline:: Marking multiline chunks with a text property. | 847 | * Font Lock Multiline:: Marking multiline chunks with a text property. |
| 848 | * Region to Fontify:: Controlling which region gets refontified | 848 | * Region to Refontify:: Controlling which region gets refontified |
| 849 | after a buffer change. | 849 | after a buffer change. |
| 850 | 850 | ||
| 851 | Documentation | 851 | Documentation |