comparison src/textprop.c @ 4649:8b11bee2bcb4

(F{next,previous}_single_property_change): Doc fix.
author Roland McGrath <roland@gnu.org>
date Thu, 19 Aug 1993 20:18:46 +0000
parents 2c5557903994
children 1fc792473491
comparison
equal deleted inserted replaced
4648:9591fdbc2868 4649:8b11bee2bcb4
584 Snext_single_property_change, 1, 3, 0, 584 Snext_single_property_change, 1, 3, 0,
585 "Return the position of next property change for a specific property.\n\ 585 "Return the position of next property change for a specific property.\n\
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)
592 Lisp_Object pos, prop, object; 593 Lisp_Object pos, prop, object;
593 { 594 {
647 Sprevious_single_property_change, 2, 3, 0, 648 Sprevious_single_property_change, 2, 3, 0,
648 "Return the position of previous property change for a specific property.\n\ 649 "Return the position of previous property change for a specific property.\n\
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)
655 Lisp_Object pos, prop, object; 657 Lisp_Object pos, prop, object;
656 { 658 {