aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2007-05-30 18:43:43 +0000
committerRichard M. Stallman2007-05-30 18:43:43 +0000
commitd85f09f046a63ac4f2b320159749bc3430e2dba5 (patch)
tree2a54bb82c3e506ee9008edfbce2cae621e298e3b
parentadc06ec41d247f7460ebda0a10993855ded4204c (diff)
downloademacs-d85f09f046a63ac4f2b320159749bc3430e2dba5.tar.gz
emacs-d85f09f046a63ac4f2b320159749bc3430e2dba5.zip
(Special Properties): Add link to Adjusting Point.
-rw-r--r--lispref/ChangeLog4
-rw-r--r--lispref/text.texi9
2 files changed, 13 insertions, 0 deletions
diff --git a/lispref/ChangeLog b/lispref/ChangeLog
index 5f5c0cfe054..9f1441d273a 100644
--- a/lispref/ChangeLog
+++ b/lispref/ChangeLog
@@ -1,3 +1,7 @@
12007-05-30 Richard Stallman <rms@gnu.org>
2
3 * text.texi (Special Properties): Add link to Adjusting Point.
4
12007-05-12 Richard Stallman <rms@gnu.org> 52007-05-12 Richard Stallman <rms@gnu.org>
2 6
3 * text.texi (Margins): indent-to-left-margin is not the default. 7 * text.texi (Margins): indent-to-left-margin is not the default.
diff --git a/lispref/text.texi b/lispref/text.texi
index cfd9f644d5a..9a6415f375c 100644
--- a/lispref/text.texi
+++ b/lispref/text.texi
@@ -2953,6 +2953,11 @@ meanings. The following sections list a few additional special property
2953names that control filling and property inheritance. All other names 2953names that control filling and property inheritance. All other names
2954have no standard meaning, and you can use them as you like. 2954have no standard meaning, and you can use them as you like.
2955 2955
2956 Note: the properties @code{composition}, @code{display},
2957@code{invisible} and @code{intangible} can also cause point to move to
2958an acceptable place, after each Emacs command. @xref{Adjusting
2959Point}.
2960
2956@table @code 2961@table @code
2957@cindex property category of text character 2962@cindex property category of text character
2958@kindex category @r{(text property)} 2963@kindex category @r{(text property)}
@@ -3140,6 +3145,10 @@ If you try to move point forward into the group, point actually moves to
3140the end of the group. If you try to move point backward into the group, 3145the end of the group. If you try to move point backward into the group,
3141point actually moves to the start of the group. 3146point actually moves to the start of the group.
3142 3147
3148If consecutive characters have unequal non-@code{nil}
3149@code{intangible} properties, they belong to separate groups; each
3150group is separately treated as described above.
3151
3143When the variable @code{inhibit-point-motion-hooks} is non-@code{nil}, 3152When the variable @code{inhibit-point-motion-hooks} is non-@code{nil},
3144the @code{intangible} property is ignored. 3153the @code{intangible} property is ignored.
3145 3154