diff options
| author | Roland McGrath | 1993-08-19 20:18:46 +0000 |
|---|---|---|
| committer | Roland McGrath | 1993-08-19 20:18:46 +0000 |
| commit | 252e4dba33c9b2d13b540c09d91ee9b38bed696e (patch) | |
| tree | d824fdf6cabcb7afa187a6a8eaa8f44b77e8fc6b /src | |
| parent | 304826544f1e8adc35b296f0a60f73be13605e0f (diff) | |
| download | emacs-252e4dba33c9b2d13b540c09d91ee9b38bed696e.tar.gz emacs-252e4dba33c9b2d13b540c09d91ee9b38bed696e.zip | |
(F{next,previous}_single_property_change): Doc fix.
Diffstat (limited to 'src')
| -rw-r--r-- | src/textprop.c | 2 |
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, | |||
| 586 | Scans characters forward from POS till it finds\n\ | 586 | Scans characters forward from POS till it finds\n\ |
| 587 | a change in the PROP property, then returns the position of the change.\n\ | 587 | a change in the PROP property, then returns the position of the change.\n\ |
| 588 | The optional third argument OBJECT is the string or buffer to scan.\n\ | 588 | The optional third argument OBJECT is the string or buffer to scan.\n\ |
| 589 | The property values are compared with `eq'. | ||
| 589 | Return nil if the property is constant all the way to the end of OBJECT.\n\ | 590 | Return nil if the property is constant all the way to the end of OBJECT.\n\ |
| 590 | If the value is non-nil, it is a position greater than POS, never equal.") | 591 | If 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, | |||
| 649 | Scans characters backward from POS till it finds\n\ | 650 | Scans characters backward from POS till it finds\n\ |
| 650 | a change in the PROP property, then returns the position of the change.\n\ | 651 | a change in the PROP property, then returns the position of the change.\n\ |
| 651 | The optional third argument OBJECT is the string or buffer to scan.\n\ | 652 | The optional third argument OBJECT is the string or buffer to scan.\n\ |
| 653 | The property values are compared with `eq'. | ||
| 652 | Return nil if the property is constant all the way to the start of OBJECT.\n\ | 654 | Return nil if the property is constant all the way to the start of OBJECT.\n\ |
| 653 | If the value is non-nil, it is a position less than POS, never equal.") | 655 | If the value is non-nil, it is a position less than POS, never equal.") |
| 654 | (pos, prop, object) | 656 | (pos, prop, object) |