diff options
author | Miles Bader <miles@gnu.org> | 2001-08-27 18:12:46 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 2001-08-27 18:12:46 +0000 |
commit | 82d50e9e46321914c4198d85142ced80031209fa (patch) | |
tree | e1ccf4b0283c62e64ee590e67d045481723f434a /src/textprop.c | |
parent | 4f821c6fc9dae8fbe4e1c358724d3cf5b02e9787 (diff) | |
download | emacs-82d50e9e46321914c4198d85142ced80031209fa.tar.gz |
(Fprevious_single_char_property_change)
(Fnext_single_char_property_change): Doc fixes.
Diffstat (limited to 'src/textprop.c')
-rw-r--r-- | src/textprop.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/textprop.c b/src/textprop.c index 87a3c09cc11..cf5ac5314e2 100644 --- a/src/textprop.c +++ b/src/textprop.c @@ -725,8 +725,8 @@ Scans characters forward from POSITION till it finds\n\ a change in the PROP property, then returns the position of the change.\n\ The optional third argument OBJECT is the string or buffer to scan.\n\ The property values are compared with `eq'.\n\ -Return nil if the property is constant all the way to the end of OBJECT.\n\ -If the value is non-nil, it is a position greater than POSITION, never equal.\n\n\ +If the property is constant all the way to the end of OBJECT, return the\n\ +last valid position in OBJECT.\n\ If the optional fourth argument LIMIT is non-nil, don't search\n\ past position LIMIT; return LIMIT if nothing is found before LIMIT.") (position, prop, object, limit) @@ -791,8 +791,8 @@ Scans characters backward from POSITION till it finds\n\ a change in the PROP property, then returns the position of the change.\n\ The optional third argument OBJECT is the string or buffer to scan.\n\ The property values are compared with `eq'.\n\ -Return nil if the property is constant all the way to the start of OBJECT.\n\ -If the value is non-nil, it is a position less than POSITION, never equal.\n\n\ +If the property is constant all the way to the start of OBJECT, return the\n\ +first valid position in OBJECT.\n\ If the optional fourth argument LIMIT is non-nil, don't search\n\ back past position LIMIT; return LIMIT if nothing is found before LIMIT.") (position, prop, object, limit) |