# HG changeset patch # User Richard M. Stallman # Date 759095796 0 # Node ID 214263de8277137daf154e19aff3723d8b839064 # Parent 2abe676588950e9d0f6d7ef896d35c220dc9bebb Doc fixes. diff -r 2abe67658895 -r 214263de8277 src/textprop.c --- a/src/textprop.c Thu Jan 20 19:54:47 1994 +0000 +++ b/src/textprop.c Thu Jan 20 19:56:36 1994 +0000 @@ -596,7 +596,7 @@ Return nil if the property is constant all the way to the end of OBJECT.\n\ If the value is non-nil, it is a position greater than POS, never equal.\n\n\ If the optional fourth argument LIMIT is non-nil, don't search\n\ -past position LIMIT; fail if nothing is found before LIMIT.") +past position LIMIT; return LIMIT if nothing is found before LIMIT.") (pos, prop, object, limit) Lisp_Object pos, prop, object, limit; { @@ -634,7 +634,7 @@ Return nil if the property is constant all the way to the start of OBJECT.\n\ If the value is non-nil, it is a position less than POS, never equal.\n\n\ If the optional third argument LIMIT is non-nil, don't search\n\ -back past position LIMIT; fail if nothing is found before LIMIT.") +back past position LIMIT; return LIMIT if nothing is found until LIMIT.") (pos, object, limit) Lisp_Object pos, object, limit; { @@ -676,7 +676,7 @@ Return nil if the property is constant all the way to the start of OBJECT.\n\ If the value is non-nil, it is a position less than POS, never equal.\n\n\ If the optional fourth argument LIMIT is non-nil, don't search\n\ -back past position LIMIT; fail if nothing is found before LIMIT.") +back past position LIMIT; return LIMIT if nothing is found until LIMIT.") (pos, prop, object, limit) Lisp_Object pos, prop, object, limit; {