aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorGlenn Morris2011-05-12 00:07:06 -0700
committerGlenn Morris2011-05-12 00:07:06 -0700
commitd2fc7e3d0f6f57f962cbd94df3bf4fd15a37bb68 (patch)
treee6d877c35b4396bd5092a7be244b1527374d4a0e /doc
parentd45885f7e0025fb5bd0756ba78c511a981d64533 (diff)
parente531bdfff1ee57a0ba4af6c8575ed7856e4c86d2 (diff)
downloademacs-d2fc7e3d0f6f57f962cbd94df3bf4fd15a37bb68.tar.gz
emacs-d2fc7e3d0f6f57f962cbd94df3bf4fd15a37bb68.zip
Merge from emacs-23; up to 2010-06-10T12:56:11Z!michael.albinus@gmx.de.
Diffstat (limited to 'doc')
-rw-r--r--doc/lispref/ChangeLog12
-rw-r--r--doc/lispref/elisp.texi2
-rw-r--r--doc/lispref/files.texi2
-rw-r--r--doc/lispref/modes.texi10
-rw-r--r--doc/lispref/vol1.texi2
-rw-r--r--doc/lispref/vol2.texi2
6 files changed, 21 insertions, 9 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog
index 7ef3be46b68..3a66cebce2a 100644
--- a/doc/lispref/ChangeLog
+++ b/doc/lispref/ChangeLog
@@ -1,3 +1,15 @@
12011-05-12 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
92011-05-12 Drew Adams <drew.adams@oracle.com>
10
11 * modes.texi (Region to Fontify): Fix typo.
12
12011-05-06 Paul Eggert <eggert@cs.ucla.edu> 132011-05-06 Paul Eggert <eggert@cs.ucla.edu>
2 14
3 * numbers.texi (Integer Basics): Large integers are treated as floats. 15 * numbers.texi (Integer Basics): Large integers are treated as floats.
diff --git a/doc/lispref/elisp.texi b/doc/lispref/elisp.texi
index 69c50ba42be..259bb3cf86e 100644
--- a/doc/lispref/elisp.texi
+++ b/doc/lispref/elisp.texi
@@ -828,7 +828,7 @@ Font Lock Mode
828Multiline Font Lock Constructs 828Multiline Font Lock Constructs
829 829
830* Font Lock Multiline:: Marking multiline chunks with a text property. 830* Font Lock Multiline:: Marking multiline chunks with a text property.
831* Region to Fontify:: Controlling which region gets refontified 831* Region to Refontify:: Controlling which region gets refontified
832 after a buffer change. 832 after a buffer change.
833 833
834Documentation 834Documentation
diff --git a/doc/lispref/files.texi b/doc/lispref/files.texi
index e3bdebd28a1..72f39f681ae 100644
--- a/doc/lispref/files.texi
+++ b/doc/lispref/files.texi
@@ -251,7 +251,7 @@ literally, i.e. without conversions of any kind. The command
251@code{find-file-literally} sets this variable's local value, but other 251@code{find-file-literally} sets this variable's local value, but other
252equivalent functions and commands can do that as well, e.g.@: to avoid 252equivalent functions and commands can do that as well, e.g.@: to avoid
253automatic addition of a newline at the end of the file. This variable 253automatic addition of a newline at the end of the file. This variable
254us permanent local, so it is unaffected by changes of major modes. 254is permanent local, so it is unaffected by changes of major modes.
255@end defvar 255@end defvar
256 256
257@node Subroutines of Visiting 257@node Subroutines of Visiting
diff --git a/doc/lispref/modes.texi b/doc/lispref/modes.texi
index f0a8985fa75..02f89f93207 100644
--- a/doc/lispref/modes.texi
+++ b/doc/lispref/modes.texi
@@ -3174,7 +3174,7 @@ subsequent lines.
3174 3174
3175@menu 3175@menu
3176* Font Lock Multiline:: Marking multiline chunks with a text property. 3176* Font Lock Multiline:: Marking multiline chunks with a text property.
3177* Region to Fontify:: Controlling which region gets refontified 3177* Region to Refontify:: Controlling which region gets refontified
3178 after a buffer change. 3178 after a buffer change.
3179@end menu 3179@end menu
3180 3180
@@ -3226,7 +3226,7 @@ place the @code{font-lock-multiline} property on the text before
3226Font-Lock looks at it, or use 3226Font-Lock looks at it, or use
3227@code{font-lock-fontify-region-function}. 3227@code{font-lock-fontify-region-function}.
3228 3228
3229@node Region to Fontify 3229@node Region to Refontify
3230@subsubsection Region to Fontify after a Buffer Change 3230@subsubsection Region to Fontify after a Buffer Change
3231 3231
3232 When a buffer is changed, the region that Font Lock refontifies is 3232 When a buffer is changed, the region that Font Lock refontifies is
@@ -3235,15 +3235,15 @@ While this works well most of the time, sometimes it doesn't---for
3235example, when a change alters the syntactic meaning of text on an 3235example, when a change alters the syntactic meaning of text on an
3236earlier line. 3236earlier line.
3237 3237
3238 You can enlarge (or even reduce) the region to fontify by setting 3238 You can enlarge (or even reduce) the region to refontify by setting
3239one the following variables: 3239the following variable:
3240 3240
3241@defvar font-lock-extend-after-change-region-function 3241@defvar font-lock-extend-after-change-region-function
3242This buffer-local variable is either @code{nil} or a function for 3242This buffer-local variable is either @code{nil} or a function for
3243Font-Lock to call to determine the region to scan and fontify. 3243Font-Lock to call to determine the region to scan and fontify.
3244 3244
3245The function is given three parameters, the standard @var{beg}, 3245The function is given three parameters, the standard @var{beg},
3246@var{end}, and @var{old-len} from after-change-functions 3246@var{end}, and @var{old-len} from @code{after-change-functions}
3247(@pxref{Change Hooks}). It should return either a cons of the 3247(@pxref{Change Hooks}). It should return either a cons of the
3248beginning and end buffer positions (in that order) of the region to 3248beginning and end buffer positions (in that order) of the region to
3249fontify, or @code{nil} (which means choose the region in the standard 3249fontify, or @code{nil} (which means choose the region in the standard
diff --git a/doc/lispref/vol1.texi b/doc/lispref/vol1.texi
index ad8ff0819ca..afcd3d6cbd6 100644
--- a/doc/lispref/vol1.texi
+++ b/doc/lispref/vol1.texi
@@ -847,7 +847,7 @@ Font Lock Mode
847Multiline Font Lock Constructs 847Multiline Font Lock Constructs
848 848
849* Font Lock Multiline:: Marking multiline chunks with a text property. 849* Font Lock Multiline:: Marking multiline chunks with a text property.
850* Region to Fontify:: Controlling which region gets refontified 850* Region to Refontify:: Controlling which region gets refontified
851 after a buffer change. 851 after a buffer change.
852 852
853Documentation 853Documentation
diff --git a/doc/lispref/vol2.texi b/doc/lispref/vol2.texi
index 7832b3a8614..65ffbc23860 100644
--- a/doc/lispref/vol2.texi
+++ b/doc/lispref/vol2.texi
@@ -846,7 +846,7 @@ Font Lock Mode
846Multiline Font Lock Constructs 846Multiline 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
852Documentation 852Documentation