diff options
| author | Richard M. Stallman | 2007-05-30 18:43:43 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2007-05-30 18:43:43 +0000 |
| commit | d85f09f046a63ac4f2b320159749bc3430e2dba5 (patch) | |
| tree | 2a54bb82c3e506ee9008edfbce2cae621e298e3b | |
| parent | adc06ec41d247f7460ebda0a10993855ded4204c (diff) | |
| download | emacs-d85f09f046a63ac4f2b320159749bc3430e2dba5.tar.gz emacs-d85f09f046a63ac4f2b320159749bc3430e2dba5.zip | |
(Special Properties): Add link to Adjusting Point.
| -rw-r--r-- | lispref/ChangeLog | 4 | ||||
| -rw-r--r-- | lispref/text.texi | 9 |
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 @@ | |||
| 1 | 2007-05-30 Richard Stallman <rms@gnu.org> | ||
| 2 | |||
| 3 | * text.texi (Special Properties): Add link to Adjusting Point. | ||
| 4 | |||
| 1 | 2007-05-12 Richard Stallman <rms@gnu.org> | 5 | 2007-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 | |||
| 2953 | names that control filling and property inheritance. All other names | 2953 | names that control filling and property inheritance. All other names |
| 2954 | have no standard meaning, and you can use them as you like. | 2954 | have 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 | ||
| 2958 | an acceptable place, after each Emacs command. @xref{Adjusting | ||
| 2959 | Point}. | ||
| 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 | |||
| 3140 | the end of the group. If you try to move point backward into the group, | 3145 | the end of the group. If you try to move point backward into the group, |
| 3141 | point actually moves to the start of the group. | 3146 | point actually moves to the start of the group. |
| 3142 | 3147 | ||
| 3148 | If consecutive characters have unequal non-@code{nil} | ||
| 3149 | @code{intangible} properties, they belong to separate groups; each | ||
| 3150 | group is separately treated as described above. | ||
| 3151 | |||
| 3143 | When the variable @code{inhibit-point-motion-hooks} is non-@code{nil}, | 3152 | When the variable @code{inhibit-point-motion-hooks} is non-@code{nil}, |
| 3144 | the @code{intangible} property is ignored. | 3153 | the @code{intangible} property is ignored. |
| 3145 | 3154 | ||