diff options
author | Richard M. Stallman <rms@gnu.org> | 1994-01-20 19:56:36 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1994-01-20 19:56:36 +0000 |
commit | 58e2901512359de7bef9cb1f8e8acbbe6c7e7390 (patch) | |
tree | 0b45dae9992f013a13064c705b1e015407f7063a /src/textprop.c | |
parent | 8bf7d2183ed70834963312165db7df43db2aa3b9 (diff) | |
download | emacs-58e2901512359de7bef9cb1f8e8acbbe6c7e7390.tar.gz |
Doc fixes.
Diffstat (limited to 'src/textprop.c')
-rw-r--r-- | src/textprop.c | 6 |
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\ 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 @@ The optional second argument OBJECT is the string or buffer to scan.\n\ 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 @@ The property values are compared with `eq'.\n\ 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; { |