aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1994-01-20 19:56:36 +0000
committerRichard M. Stallman1994-01-20 19:56:36 +0000
commit5abb9556a4884784e718935f726dc2a58dcb8f76 (patch)
treee37d7fc45f0891b6f0beb179f29e459df28ba12f /src
parent53b7feeccbe950ff9fdd37d2fbc321def817c922 (diff)
downloademacs-5abb9556a4884784e718935f726dc2a58dcb8f76.tar.gz
emacs-5abb9556a4884784e718935f726dc2a58dcb8f76.zip
Doc fixes.
Diffstat (limited to 'src')
-rw-r--r--src/textprop.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/textprop.c b/src/textprop.c
index 189dd4726e8..21dd5cf2a91 100644
--- a/src/textprop.c
+++ b/src/textprop.c
@@ -596,7 +596,7 @@ The property values are compared with `eq'.\n\
596Return nil if the property is constant all the way to the end of OBJECT.\n\ 596Return nil if the property is constant all the way to the end of OBJECT.\n\
597If the value is non-nil, it is a position greater than POS, never equal.\n\n\ 597If the value is non-nil, it is a position greater than POS, never equal.\n\n\
598If the optional fourth argument LIMIT is non-nil, don't search\n\ 598If the optional fourth argument LIMIT is non-nil, don't search\n\
599past position LIMIT; fail if nothing is found before LIMIT.") 599past 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{
@@ -634,7 +634,7 @@ The optional second argument OBJECT is the string or buffer to scan.\n\
634Return nil if the property is constant all the way to the start of OBJECT.\n\ 634Return nil if the property is constant all the way to the start of OBJECT.\n\
635If the value is non-nil, it is a position less than POS, never equal.\n\n\ 635If the value is non-nil, it is a position less than POS, never equal.\n\n\
636If the optional third argument LIMIT is non-nil, don't search\n\ 636If the optional third argument LIMIT is non-nil, don't search\n\
637back past position LIMIT; fail if nothing is found before LIMIT.") 637back 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{
@@ -676,7 +676,7 @@ The property values are compared with `eq'.\n\
676Return nil if the property is constant all the way to the start of OBJECT.\n\ 676Return nil if the property is constant all the way to the start of OBJECT.\n\
677If the value is non-nil, it is a position less than POS, never equal.\n\n\ 677If the value is non-nil, it is a position less than POS, never equal.\n\n\
678If the optional fourth argument LIMIT is non-nil, don't search\n\ 678If the optional fourth argument LIMIT is non-nil, don't search\n\
679back past position LIMIT; fail if nothing is found before LIMIT.") 679back 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{