diff options
| author | Miles Bader | 2001-08-27 18:12:46 +0000 |
|---|---|---|
| committer | Miles Bader | 2001-08-27 18:12:46 +0000 |
| commit | f621045e3e1422d678934d632af8e18857ee5b29 (patch) | |
| tree | 1e381e0cc582bfab9fb4b4074631c361071e328d /src | |
| parent | 47d57b22214afc761a35978bd6066a6ff881d0ce (diff) | |
| download | emacs-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.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\ | |||
| 725 | a change in the PROP property, then returns the position of the change.\n\ | 725 | a change in the PROP property, then returns the position of the change.\n\ |
| 726 | The optional third argument OBJECT is the string or buffer to scan.\n\ | 726 | The optional third argument OBJECT is the string or buffer to scan.\n\ |
| 727 | The property values are compared with `eq'.\n\ | 727 | The property values are compared with `eq'.\n\ |
| 728 | Return nil if the property is constant all the way to the end of OBJECT.\n\ | 728 | If the property is constant all the way to the end of OBJECT, return the\n\ |
| 729 | If the value is non-nil, it is a position greater than POSITION, never equal.\n\n\ | 729 | last valid position in OBJECT.\n\ |
| 730 | If the optional fourth argument LIMIT is non-nil, don't search\n\ | 730 | If the optional fourth argument LIMIT is non-nil, don't search\n\ |
| 731 | past position LIMIT; return LIMIT if nothing is found before LIMIT.") | 731 | past 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\ | |||
| 791 | a change in the PROP property, then returns the position of the change.\n\ | 791 | a change in the PROP property, then returns the position of the change.\n\ |
| 792 | The optional third argument OBJECT is the string or buffer to scan.\n\ | 792 | The optional third argument OBJECT is the string or buffer to scan.\n\ |
| 793 | The property values are compared with `eq'.\n\ | 793 | The property values are compared with `eq'.\n\ |
| 794 | Return nil if the property is constant all the way to the start of OBJECT.\n\ | 794 | If the property is constant all the way to the start of OBJECT, return the\n\ |
| 795 | If the value is non-nil, it is a position less than POSITION, never equal.\n\n\ | 795 | first valid position in OBJECT.\n\ |
| 796 | If the optional fourth argument LIMIT is non-nil, don't search\n\ | 796 | If the optional fourth argument LIMIT is non-nil, don't search\n\ |
| 797 | back past position LIMIT; return LIMIT if nothing is found before LIMIT.") | 797 | back past position LIMIT; return LIMIT if nothing is found before LIMIT.") |
| 798 | (position, prop, object, limit) | 798 | (position, prop, object, limit) |