+Sat Nov 1 08:45:38 2003 Owen Taylor <otaylor@redhat.com>
+
+ * glib/gmain.c (g_main_context_iterate): Set the
+ return value from the result of g_main_context_check()
+ (after we poll) rather than g_main_context_prepare.
+ (#121675, Padraig O'Briain)
+
Fri Oct 31 00:13:53 2003 Matthias Clasen <maclas@gmx.de>
* configure.in: Remove the semicolon from the definition of
+Sat Nov 1 08:45:38 2003 Owen Taylor <otaylor@redhat.com>
+
+ * glib/gmain.c (g_main_context_iterate): Set the
+ return value from the result of g_main_context_check()
+ (after we poll) rather than g_main_context_prepare.
+ (#121675, Padraig O'Briain)
+
Fri Oct 31 00:13:53 2003 Matthias Clasen <maclas@gmx.de>
* configure.in: Remove the semicolon from the definition of
+Sat Nov 1 08:45:38 2003 Owen Taylor <otaylor@redhat.com>
+
+ * glib/gmain.c (g_main_context_iterate): Set the
+ return value from the result of g_main_context_check()
+ (after we poll) rather than g_main_context_prepare.
+ (#121675, Padraig O'Briain)
+
Fri Oct 31 00:13:53 2003 Matthias Clasen <maclas@gmx.de>
* configure.in: Remove the semicolon from the definition of
+Sat Nov 1 08:45:38 2003 Owen Taylor <otaylor@redhat.com>
+
+ * glib/gmain.c (g_main_context_iterate): Set the
+ return value from the result of g_main_context_check()
+ (after we poll) rather than g_main_context_prepare.
+ (#121675, Padraig O'Briain)
+
Fri Oct 31 00:13:53 2003 Matthias Clasen <maclas@gmx.de>
* configure.in: Remove the semicolon from the definition of
+Sat Nov 1 08:45:38 2003 Owen Taylor <otaylor@redhat.com>
+
+ * glib/gmain.c (g_main_context_iterate): Set the
+ return value from the result of g_main_context_check()
+ (after we poll) rather than g_main_context_prepare.
+ (#121675, Padraig O'Briain)
+
Fri Oct 31 00:13:53 2003 Matthias Clasen <maclas@gmx.de>
* configure.in: Remove the semicolon from the definition of
+Sat Nov 1 08:45:38 2003 Owen Taylor <otaylor@redhat.com>
+
+ * glib/gmain.c (g_main_context_iterate): Set the
+ return value from the result of g_main_context_check()
+ (after we poll) rather than g_main_context_prepare.
+ (#121675, Padraig O'Briain)
+
Fri Oct 31 00:13:53 2003 Matthias Clasen <maclas@gmx.de>
* configure.in: Remove the semicolon from the definition of
UNLOCK_CONTEXT (context);
- some_ready = g_main_context_prepare (context, &max_priority);
+ g_main_context_prepare (context, &max_priority);
while ((nfds = g_main_context_query (context, max_priority, &timeout, fds,
allocated_nfds)) > allocated_nfds)
g_main_context_poll (context, timeout, max_priority, fds, nfds);
- g_main_context_check (context, max_priority, fds, nfds);
+ some_ready = g_main_context_check (context, max_priority, fds, nfds);
if (dispatch)
g_main_context_dispatch (context);