diff options
| author | Miles Bader | 2001-10-02 01:53:10 +0000 |
|---|---|---|
| committer | Miles Bader | 2001-10-02 01:53:10 +0000 |
| commit | 6d7a9ba1986fb2485d736d7bd03ffe590f65777d (patch) | |
| tree | e8f8f3029b38aa9f89bb4d8734f65b9430153f5c | |
| parent | 8632c7cb76b284e96decb11cab36c1cdbdf2983f (diff) | |
| download | emacs-6d7a9ba1986fb2485d736d7bd03ffe590f65777d.tar.gz emacs-6d7a9ba1986fb2485d736d7bd03ffe590f65777d.zip | |
(Fnext_char_property_change)
(Fprevious_char_property_change): Remove reference to non-existant
argument OBJECT from doc-string.
| -rw-r--r-- | src/textprop.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/textprop.c b/src/textprop.c index 5bbd7ffd92a..0cb09791f5e 100644 --- a/src/textprop.c +++ b/src/textprop.c | |||
| @@ -671,9 +671,9 @@ overlays are considered only if they are associated with OBJECT.") | |||
| 671 | DEFUN ("next-char-property-change", Fnext_char_property_change, | 671 | DEFUN ("next-char-property-change", Fnext_char_property_change, |
| 672 | Snext_char_property_change, 1, 2, 0, | 672 | Snext_char_property_change, 1, 2, 0, |
| 673 | "Return the position of next text property or overlay change.\n\ | 673 | "Return the position of next text property or overlay change.\n\ |
| 674 | This scans characters forward from POSITION in OBJECT till it finds\n\ | 674 | This scans characters forward from POSITION till it finds a change in\n\ |
| 675 | a change in some text property, or the beginning or end of an overlay,\n\ | 675 | some text property, or the beginning or end of an overlay, and returns\n\ |
| 676 | and returns the position of that.\n\ | 676 | the position of that.\n\ |
| 677 | If none is found, the function returns (point-max).\n\ | 677 | If none is found, the function returns (point-max).\n\ |
| 678 | \n\ | 678 | \n\ |
| 679 | If the optional third argument LIMIT is non-nil, don't search\n\ | 679 | If the optional third argument LIMIT is non-nil, don't search\n\ |
| @@ -696,9 +696,9 @@ past position LIMIT; return LIMIT if nothing is found before LIMIT.") | |||
| 696 | DEFUN ("previous-char-property-change", Fprevious_char_property_change, | 696 | DEFUN ("previous-char-property-change", Fprevious_char_property_change, |
| 697 | Sprevious_char_property_change, 1, 2, 0, | 697 | Sprevious_char_property_change, 1, 2, 0, |
| 698 | "Return the position of previous text property or overlay change.\n\ | 698 | "Return the position of previous text property or overlay change.\n\ |
| 699 | Scans characters backward from POSITION in OBJECT till it finds\n\ | 699 | Scans characters backward from POSITION till it finds a change in some\n\ |
| 700 | a change in some text property, or the beginning or end of an overlay,\n\ | 700 | text property, or the beginning or end of an overlay, and returns the\n\ |
| 701 | and returns the position of that.\n\ | 701 | position of that.\n\ |
| 702 | If none is found, the function returns (point-max).\n\ | 702 | If none is found, the function returns (point-max).\n\ |
| 703 | \n\ | 703 | \n\ |
| 704 | If the optional third argument LIMIT is non-nil, don't search\n\ | 704 | If the optional third argument LIMIT is non-nil, don't search\n\ |