diff options
| author | Richard M. Stallman | 2007-10-09 01:25:41 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2007-10-09 01:25:41 +0000 |
| commit | af23e1e89d01ec0a89ae81d3062c77bd1e685c05 (patch) | |
| tree | d2ccb2a5f82d933432fd11bb6f45f50e08a88669 | |
| parent | fb33e6a9a6bf86ac11c0a0c0eba8317f8dace874 (diff) | |
| download | emacs-af23e1e89d01ec0a89ae81d3062c77bd1e685c05.tar.gz emacs-af23e1e89d01ec0a89ae81d3062c77bd1e685c05.zip | |
(Examining Properties): Mention overlay priority.
| -rw-r--r-- | lispref/ChangeLog | 8 | ||||
| -rw-r--r-- | lispref/text.texi | 14 |
2 files changed, 15 insertions, 7 deletions
diff --git a/lispref/ChangeLog b/lispref/ChangeLog index d3ae65be947..0c2c09c3f96 100644 --- a/lispref/ChangeLog +++ b/lispref/ChangeLog | |||
| @@ -1,3 +1,11 @@ | |||
| 1 | 2007-10-09 Richard Stallman <rms@gnu.org> | ||
| 2 | |||
| 3 | * text.texi (Examining Properties): Mention overlay priority. | ||
| 4 | |||
| 5 | * display.texi (Display Margins): Correct the description | ||
| 6 | of margin display specifications. | ||
| 7 | (Replacing Specs): New subnode broken out of Display Property. | ||
| 8 | |||
| 1 | 2007-10-05 Juanma Barranquero <lekktu@gmail.com> | 9 | 2007-10-05 Juanma Barranquero <lekktu@gmail.com> |
| 2 | 10 | ||
| 3 | * display.texi (Auto Faces): Fix typo. | 11 | * display.texi (Auto Faces): Fix typo. |
diff --git a/lispref/text.texi b/lispref/text.texi index bad68b7f8ae..906e51c513b 100644 --- a/lispref/text.texi +++ b/lispref/text.texi | |||
| @@ -2615,13 +2615,13 @@ the @var{prop} property of that symbol. | |||
| 2615 | This function is like @code{get-text-property}, except that it checks | 2615 | This function is like @code{get-text-property}, except that it checks |
| 2616 | overlays first and then text properties. @xref{Overlays}. | 2616 | overlays first and then text properties. @xref{Overlays}. |
| 2617 | 2617 | ||
| 2618 | The argument @var{object} may be a string, a buffer, or a window. If it | 2618 | The argument @var{object} may be a string, a buffer, or a window. If |
| 2619 | is a window, then the buffer displayed in that window is used for text | 2619 | it is a window, then the buffer displayed in that window is used for |
| 2620 | properties and overlays, but only the overlays active for that window | 2620 | text properties and overlays, but only the overlays active for that |
| 2621 | are considered. If @var{object} is a buffer, then all overlays in that | 2621 | window are considered. If @var{object} is a buffer, then overlays in |
| 2622 | buffer are considered, as well as text properties. If @var{object} is a | 2622 | that buffer are considered first, in order of decreasing priority, |
| 2623 | string, only text properties are considered, since strings never have | 2623 | followed by the text properties. If @var{object} is a string, only |
| 2624 | overlays. | 2624 | text properties are considered, since strings never have overlays. |
| 2625 | @end defun | 2625 | @end defun |
| 2626 | 2626 | ||
| 2627 | @defun get-char-property-and-overlay position prop &optional object | 2627 | @defun get-char-property-and-overlay position prop &optional object |