Make limit an inclusive boundary. (#321299)

2005-11-13  Matthias Clasen  <mclasen@redhat.com>

	* gtk/gtktextiter.c (gtk_text_iter_forward_search): Make
	limit an inclusive boundary.  (#321299)
This commit is contained in:
Matthias Clasen
2005-11-14 04:25:25 +00:00
committed by Matthias Clasen
parent 94e4118cf7
commit caf8be159a
3 changed files with 11 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2005-11-13 Matthias Clasen <mclasen@redhat.com>
* gtk/gtktextiter.c (gtk_text_iter_forward_search): Make
limit an inclusive boundary. (#321299)
2005-11-12 Michael Natterer <mitch@imendio.com>
* gtk/Makefile.am: fixed icon rules so gtkbuiltincache.h is only

View File

@ -1,3 +1,8 @@
2005-11-13 Matthias Clasen <mclasen@redhat.com>
* gtk/gtktextiter.c (gtk_text_iter_forward_search): Make
limit an inclusive boundary. (#321299)
2005-11-12 Michael Natterer <mitch@imendio.com>
* gtk/Makefile.am: fixed icon rules so gtkbuiltincache.h is only

View File

@ -4682,7 +4682,7 @@ gtk_text_iter_forward_search (const GtkTextIter *iter,
{
if (limit == NULL ||
(limit &&
gtk_text_iter_compare (&end, limit) < 0))
gtk_text_iter_compare (&end, limit) <= 0))
{
retval = TRUE;