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:
committed by
Matthias Clasen
parent
caf17bae51
commit
35f2ae1b04
@@ -1,5 +1,8 @@
|
||||
2005-11-13 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/gtktextiter.c (gtk_text_iter_forward_search): Make
|
||||
limit an inclusive boundary. (#321299)
|
||||
|
||||
* NEWS: Updates
|
||||
|
||||
2005-11-12 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
@@ -1,5 +1,8 @@
|
||||
2005-11-13 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/gtktextiter.c (gtk_text_iter_forward_search): Make
|
||||
limit an inclusive boundary. (#321299)
|
||||
|
||||
* NEWS: Updates
|
||||
|
||||
2005-11-12 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
@@ -4685,7 +4685,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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user