comparison src/textprop.c @ 5645:214263de8277

Doc fixes.
author Richard M. Stallman <rms@gnu.org>
date Thu, 20 Jan 1994 19:56:36 +0000
parents 2abe67658895
children 9e5b5196aae9
comparison
equal deleted inserted replaced
5644:2abe67658895 5645:214263de8277
594 The optional third argument OBJECT is the string or buffer to scan.\n\ 594 The optional third argument OBJECT is the string or buffer to scan.\n\
595 The property values are compared with `eq'.\n\ 595 The property values are compared with `eq'.\n\
596 Return nil if the property is constant all the way to the end of OBJECT.\n\ 596 Return nil if the property is constant all the way to the end of OBJECT.\n\
597 If the value is non-nil, it is a position greater than POS, never equal.\n\n\ 597 If the value is non-nil, it is a position greater than POS, never equal.\n\n\
598 If the optional fourth argument LIMIT is non-nil, don't search\n\ 598 If the optional fourth argument LIMIT is non-nil, don't search\n\
599 past position LIMIT; fail if nothing is found before LIMIT.") 599 past position LIMIT; return LIMIT if nothing is found before LIMIT.")
600 (pos, prop, object, limit) 600 (pos, prop, object, limit)
601 Lisp_Object pos, prop, object, limit; 601 Lisp_Object pos, prop, object, limit;
602 { 602 {
603 register INTERVAL i, next; 603 register INTERVAL i, next;
604 register Lisp_Object here_val; 604 register Lisp_Object here_val;
632 a change in some text property, then returns the position of the change.\n\ 632 a change in some text property, then returns the position of the change.\n\
633 The optional second argument OBJECT is the string or buffer to scan.\n\ 633 The optional second argument OBJECT is the string or buffer to scan.\n\
634 Return nil if the property is constant all the way to the start of OBJECT.\n\ 634 Return nil if the property is constant all the way to the start of OBJECT.\n\
635 If the value is non-nil, it is a position less than POS, never equal.\n\n\ 635 If the value is non-nil, it is a position less than POS, never equal.\n\n\
636 If the optional third argument LIMIT is non-nil, don't search\n\ 636 If the optional third argument LIMIT is non-nil, don't search\n\
637 back past position LIMIT; fail if nothing is found before LIMIT.") 637 back past position LIMIT; return LIMIT if nothing is found until LIMIT.")
638 (pos, object, limit) 638 (pos, object, limit)
639 Lisp_Object pos, object, limit; 639 Lisp_Object pos, object, limit;
640 { 640 {
641 register INTERVAL i, previous; 641 register INTERVAL i, previous;
642 642
674 The optional third argument OBJECT is the string or buffer to scan.\n\ 674 The optional third argument OBJECT is the string or buffer to scan.\n\
675 The property values are compared with `eq'.\n\ 675 The property values are compared with `eq'.\n\
676 Return nil if the property is constant all the way to the start of OBJECT.\n\ 676 Return nil if the property is constant all the way to the start of OBJECT.\n\
677 If the value is non-nil, it is a position less than POS, never equal.\n\n\ 677 If the value is non-nil, it is a position less than POS, never equal.\n\n\
678 If the optional fourth argument LIMIT is non-nil, don't search\n\ 678 If the optional fourth argument LIMIT is non-nil, don't search\n\
679 back past position LIMIT; fail if nothing is found before LIMIT.") 679 back past position LIMIT; return LIMIT if nothing is found until LIMIT.")
680 (pos, prop, object, limit) 680 (pos, prop, object, limit)
681 Lisp_Object pos, prop, object, limit; 681 Lisp_Object pos, prop, object, limit;
682 { 682 {
683 register INTERVAL i, previous; 683 register INTERVAL i, previous;
684 register Lisp_Object here_val; 684 register Lisp_Object here_val;