aboutsummaryrefslogtreecommitdiffstats
path: root/src/textprop.c
diff options
context:
space:
mode:
authorRoland McGrath1993-08-19 20:18:46 +0000
committerRoland McGrath1993-08-19 20:18:46 +0000
commit252e4dba33c9b2d13b540c09d91ee9b38bed696e (patch)
treed824fdf6cabcb7afa187a6a8eaa8f44b77e8fc6b /src/textprop.c
parent304826544f1e8adc35b296f0a60f73be13605e0f (diff)
downloademacs-252e4dba33c9b2d13b540c09d91ee9b38bed696e.tar.gz
emacs-252e4dba33c9b2d13b540c09d91ee9b38bed696e.zip
(F{next,previous}_single_property_change): Doc fix.
Diffstat (limited to 'src/textprop.c')
-rw-r--r--src/textprop.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/textprop.c b/src/textprop.c
index 50810e62dfc..25164871f22 100644
--- a/src/textprop.c
+++ b/src/textprop.c
@@ -586,6 +586,7 @@ DEFUN ("next-single-property-change", Fnext_single_property_change,
586Scans characters forward from POS till it finds\n\ 586Scans characters forward from POS till it finds\n\
587a change in the PROP property, then returns the position of the change.\n\ 587a change in the PROP property, then returns the position of the change.\n\
588The optional third argument OBJECT is the string or buffer to scan.\n\ 588The optional third argument OBJECT is the string or buffer to scan.\n\
589The property values are compared with `eq'.
589Return nil if the property is constant all the way to the end of OBJECT.\n\ 590Return nil if the property is constant all the way to the end of OBJECT.\n\
590If the value is non-nil, it is a position greater than POS, never equal.") 591If the value is non-nil, it is a position greater than POS, never equal.")
591 (pos, prop, object) 592 (pos, prop, object)
@@ -649,6 +650,7 @@ DEFUN ("previous-single-property-change", Fprevious_single_property_change,
649Scans characters backward from POS till it finds\n\ 650Scans characters backward from POS till it finds\n\
650a change in the PROP property, then returns the position of the change.\n\ 651a change in the PROP property, then returns the position of the change.\n\
651The optional third argument OBJECT is the string or buffer to scan.\n\ 652The optional third argument OBJECT is the string or buffer to scan.\n\
653The property values are compared with `eq'.
652Return nil if the property is constant all the way to the start of OBJECT.\n\ 654Return nil if the property is constant all the way to the start of OBJECT.\n\
653If the value is non-nil, it is a position less than POS, never equal.") 655If the value is non-nil, it is a position less than POS, never equal.")
654 (pos, prop, object) 656 (pos, prop, object)