Mercurial > emacs
comparison src/textprop.c @ 90203:187d6a1f84f7
Revision: miles@gnu.org--gnu-2005/emacs--unicode--0--patch-71
Merge from emacs--cvs-trunk--0
Patches applied:
* emacs--cvs-trunk--0 (patch 485-492)
- Update from CVS
- Merge from gnus--rel--5.10
* gnus--rel--5.10 (patch 92-94)
- Merge from emacs--cvs-trunk--0
- Update from CVS
author | Miles Bader <miles@gnu.org> |
---|---|
date | Fri, 22 Jul 2005 08:27:27 +0000 |
parents | f9a65d7ebd29 7a1c6e86c825 |
children | 2d92f5c9d6ae |
comparison
equal
deleted
inserted
replaced
90202:7597b4a23c3b | 90203:187d6a1f84f7 |
---|---|
717 This scans characters forward in the current buffer from POSITION till | 717 This scans characters forward in the current buffer from POSITION till |
718 it finds a change in some text property, or the beginning or end of an | 718 it finds a change in some text property, or the beginning or end of an |
719 overlay, and returns the position of that. | 719 overlay, and returns the position of that. |
720 If none is found, the function returns (point-max). | 720 If none is found, the function returns (point-max). |
721 | 721 |
722 If the optional third argument LIMIT is non-nil, don't search | 722 If the optional second argument LIMIT is non-nil, don't search |
723 past position LIMIT; return LIMIT if nothing is found before LIMIT. */) | 723 past position LIMIT; return LIMIT if nothing is found before LIMIT. */) |
724 (position, limit) | 724 (position, limit) |
725 Lisp_Object position, limit; | 725 Lisp_Object position, limit; |
726 { | 726 { |
727 Lisp_Object temp; | 727 Lisp_Object temp; |
742 Scans characters backward in the current buffer from POSITION till it | 742 Scans characters backward in the current buffer from POSITION till it |
743 finds a change in some text property, or the beginning or end of an | 743 finds a change in some text property, or the beginning or end of an |
744 overlay, and returns the position of that. | 744 overlay, and returns the position of that. |
745 If none is found, the function returns (point-max). | 745 If none is found, the function returns (point-max). |
746 | 746 |
747 If the optional third argument LIMIT is non-nil, don't search | 747 If the optional second argument LIMIT is non-nil, don't search |
748 past position LIMIT; return LIMIT if nothing is found before LIMIT. */) | 748 past position LIMIT; return LIMIT if nothing is found before LIMIT. */) |
749 (position, limit) | 749 (position, limit) |
750 Lisp_Object position, limit; | 750 Lisp_Object position, limit; |
751 { | 751 { |
752 Lisp_Object temp; | 752 Lisp_Object temp; |