aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiles Bader2001-10-02 01:53:10 +0000
committerMiles Bader2001-10-02 01:53:10 +0000
commit6d7a9ba1986fb2485d736d7bd03ffe590f65777d (patch)
treee8f8f3029b38aa9f89bb4d8734f65b9430153f5c
parent8632c7cb76b284e96decb11cab36c1cdbdf2983f (diff)
downloademacs-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.c12
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.")
671DEFUN ("next-char-property-change", Fnext_char_property_change, 671DEFUN ("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\
674This scans characters forward from POSITION in OBJECT till it finds\n\ 674This scans characters forward from POSITION till it finds a change in\n\
675a change in some text property, or the beginning or end of an overlay,\n\ 675some text property, or the beginning or end of an overlay, and returns\n\
676and returns the position of that.\n\ 676the position of that.\n\
677If none is found, the function returns (point-max).\n\ 677If none is found, the function returns (point-max).\n\
678\n\ 678\n\
679If the optional third argument LIMIT is non-nil, don't search\n\ 679If 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.")
696DEFUN ("previous-char-property-change", Fprevious_char_property_change, 696DEFUN ("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\
699Scans characters backward from POSITION in OBJECT till it finds\n\ 699Scans characters backward from POSITION till it finds a change in some\n\
700a change in some text property, or the beginning or end of an overlay,\n\ 700text property, or the beginning or end of an overlay, and returns the\n\
701and returns the position of that.\n\ 701position of that.\n\
702If none is found, the function returns (point-max).\n\ 702If none is found, the function returns (point-max).\n\
703\n\ 703\n\
704If the optional third argument LIMIT is non-nil, don't search\n\ 704If the optional third argument LIMIT is non-nil, don't search\n\