aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2007-10-09 01:25:41 +0000
committerRichard M. Stallman2007-10-09 01:25:41 +0000
commitaf23e1e89d01ec0a89ae81d3062c77bd1e685c05 (patch)
treed2ccb2a5f82d933432fd11bb6f45f50e08a88669
parentfb33e6a9a6bf86ac11c0a0c0eba8317f8dace874 (diff)
downloademacs-af23e1e89d01ec0a89ae81d3062c77bd1e685c05.tar.gz
emacs-af23e1e89d01ec0a89ae81d3062c77bd1e685c05.zip
(Examining Properties): Mention overlay priority.
-rw-r--r--lispref/ChangeLog8
-rw-r--r--lispref/text.texi14
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 @@
12007-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
12007-10-05 Juanma Barranquero <lekktu@gmail.com> 92007-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.
2615This function is like @code{get-text-property}, except that it checks 2615This function is like @code{get-text-property}, except that it checks
2616overlays first and then text properties. @xref{Overlays}. 2616overlays first and then text properties. @xref{Overlays}.
2617 2617
2618The argument @var{object} may be a string, a buffer, or a window. If it 2618The argument @var{object} may be a string, a buffer, or a window. If
2619is a window, then the buffer displayed in that window is used for text 2619it is a window, then the buffer displayed in that window is used for
2620properties and overlays, but only the overlays active for that window 2620text properties and overlays, but only the overlays active for that
2621are considered. If @var{object} is a buffer, then all overlays in that 2621window are considered. If @var{object} is a buffer, then overlays in
2622buffer are considered, as well as text properties. If @var{object} is a 2622that buffer are considered first, in order of decreasing priority,
2623string, only text properties are considered, since strings never have 2623followed by the text properties. If @var{object} is a string, only
2624overlays. 2624text 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