]> git.eshelyaron.com Git - emacs.git/commitdiff
Document `get-pos-property'.
authorXue Fuqiao <xfq.free@gmail.com>
Sun, 22 Dec 2013 06:25:57 +0000 (14:25 +0800)
committerXue Fuqiao <xfq.free@gmail.com>
Sun, 22 Dec 2013 06:25:57 +0000 (14:25 +0800)
* doc/lispref/text.texi (Examining Properties): Document `get-pos-property'.

doc/lispref/ChangeLog
doc/lispref/text.texi
etc/NEWS

index 14facae6ba5dcef20b4df23fdfcda514d711a451..a92ae2992507867a839a4d54952d81e6e2e27c91 100644 (file)
@@ -1,5 +1,7 @@
 2013-12-22  Xue Fuqiao  <xfq.free@gmail.com>
 
+       * text.texi (Examining Properties): Document `get-pos-property'.
+
        * variables.texi (Directory Local Variables): Document `enable-dir-local-variables'.
 
        * debugging.texi (Debugger Commands): Document `debugger-toggle-locals'.
index 1deb4a6530a9799ada4615abe20192b6edc84f4a..0ddff24aa15eb412d0afc21ccd15add910639e81 100644 (file)
@@ -2679,6 +2679,13 @@ followed by the text properties.  If @var{object} is a string, only
 text properties are considered, since strings never have overlays.
 @end defun
 
+@defun get-pos-property position prop &optional object
+This function is like @code{get-char-property}, except that it pays
+attention to properties' stickiness and overlays' advancement settings
+instead of the property of the character at (i.e. right after)
+@var{position}.
+@end defun
+
 @defun get-char-property-and-overlay position prop &optional object
 This is like @code{get-char-property}, but gives extra information
 about the overlay that the property value comes from.
index 0b78a93fa943b5c24b29d7dc127d6cf7dac556cd..e3c902e66d87fc4e4941de4c29a9439163294d21 100644 (file)
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -891,6 +891,7 @@ respecting file-local variables.
 Generic commands are interactive functions whose implementation can be
 selected among several alternatives, as a matter of user preference.
 
++++
 ** New function `get-pos-property'.
 
 ** Minibuffer changes