aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMiles Bader2001-08-27 18:12:46 +0000
committerMiles Bader2001-08-27 18:12:46 +0000
commitf621045e3e1422d678934d632af8e18857ee5b29 (patch)
tree1e381e0cc582bfab9fb4b4074631c361071e328d /src
parent47d57b22214afc761a35978bd6066a6ff881d0ce (diff)
downloademacs-f621045e3e1422d678934d632af8e18857ee5b29.tar.gz
emacs-f621045e3e1422d678934d632af8e18857ee5b29.zip
(Fprevious_single_char_property_change)
(Fnext_single_char_property_change): Doc fixes.
Diffstat (limited to 'src')
-rw-r--r--src/textprop.c8
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\
725a change in the PROP property, then returns the position of the change.\n\ 725a change in the PROP property, then returns the position of the change.\n\
726The optional third argument OBJECT is the string or buffer to scan.\n\ 726The optional third argument OBJECT is the string or buffer to scan.\n\
727The property values are compared with `eq'.\n\ 727The property values are compared with `eq'.\n\
728Return nil if the property is constant all the way to the end of OBJECT.\n\ 728If the property is constant all the way to the end of OBJECT, return the\n\
729If the value is non-nil, it is a position greater than POSITION, never equal.\n\n\ 729last valid position in OBJECT.\n\
730If the optional fourth argument LIMIT is non-nil, don't search\n\ 730If the optional fourth argument LIMIT is non-nil, don't search\n\
731past position LIMIT; return LIMIT if nothing is found before LIMIT.") 731past position LIMIT; return LIMIT if nothing is found before LIMIT.")
732 (position, prop, object, limit) 732 (position, prop, object, limit)
@@ -791,8 +791,8 @@ Scans characters backward from POSITION till it finds\n\
791a change in the PROP property, then returns the position of the change.\n\ 791a change in the PROP property, then returns the position of the change.\n\
792The optional third argument OBJECT is the string or buffer to scan.\n\ 792The optional third argument OBJECT is the string or buffer to scan.\n\
793The property values are compared with `eq'.\n\ 793The property values are compared with `eq'.\n\
794Return nil if the property is constant all the way to the start of OBJECT.\n\ 794If the property is constant all the way to the start of OBJECT, return the\n\
795If the value is non-nil, it is a position less than POSITION, never equal.\n\n\ 795first valid position in OBJECT.\n\
796If the optional fourth argument LIMIT is non-nil, don't search\n\ 796If the optional fourth argument LIMIT is non-nil, don't search\n\
797back past position LIMIT; return LIMIT if nothing is found before LIMIT.") 797back past position LIMIT; return LIMIT if nothing is found before LIMIT.")
798 (position, prop, object, limit) 798 (position, prop, object, limit)