Use G_IO_ERR|G_IO_HUP|G_IO_NVAL as the mask for checking for

1998-12-15  Elliot Lee  <sopwith@bogus.cuc.ml.org>

	* gdk/gdkevents.c: Use G_IO_ERR|G_IO_HUP|G_IO_NVAL
	as the mask for checking for GDK_INPUT_EXCEPTION events.
This commit is contained in:
Elliot Lee
1998-12-15 23:59:44 +00:00
committed by Elliot Lee
parent 3f1ffdacbb
commit a8e00e2169
9 changed files with 39 additions and 6 deletions

View File

@ -1,3 +1,8 @@
1998-12-15 Elliot Lee <sopwith@bogus.cuc.ml.org>
* gdk/gdkevents.c: Use G_IO_ERR|G_IO_HUP|G_IO_NVAL
as the mask for checking for GDK_INPUT_EXCEPTION events.
1998-12-15 Martin Baulig <martin@home-of-linux.org> 1998-12-15 Martin Baulig <martin@home-of-linux.org>
* acinclude.m4: Make the gettext check for for libc5 systems. * acinclude.m4: Make the gettext check for for libc5 systems.

View File

@ -1,3 +1,8 @@
1998-12-15 Elliot Lee <sopwith@bogus.cuc.ml.org>
* gdk/gdkevents.c: Use G_IO_ERR|G_IO_HUP|G_IO_NVAL
as the mask for checking for GDK_INPUT_EXCEPTION events.
1998-12-15 Martin Baulig <martin@home-of-linux.org> 1998-12-15 Martin Baulig <martin@home-of-linux.org>
* acinclude.m4: Make the gettext check for for libc5 systems. * acinclude.m4: Make the gettext check for for libc5 systems.

View File

@ -1,3 +1,8 @@
1998-12-15 Elliot Lee <sopwith@bogus.cuc.ml.org>
* gdk/gdkevents.c: Use G_IO_ERR|G_IO_HUP|G_IO_NVAL
as the mask for checking for GDK_INPUT_EXCEPTION events.
1998-12-15 Martin Baulig <martin@home-of-linux.org> 1998-12-15 Martin Baulig <martin@home-of-linux.org>
* acinclude.m4: Make the gettext check for for libc5 systems. * acinclude.m4: Make the gettext check for for libc5 systems.

View File

@ -1,3 +1,8 @@
1998-12-15 Elliot Lee <sopwith@bogus.cuc.ml.org>
* gdk/gdkevents.c: Use G_IO_ERR|G_IO_HUP|G_IO_NVAL
as the mask for checking for GDK_INPUT_EXCEPTION events.
1998-12-15 Martin Baulig <martin@home-of-linux.org> 1998-12-15 Martin Baulig <martin@home-of-linux.org>
* acinclude.m4: Make the gettext check for for libc5 systems. * acinclude.m4: Make the gettext check for for libc5 systems.

View File

@ -1,3 +1,8 @@
1998-12-15 Elliot Lee <sopwith@bogus.cuc.ml.org>
* gdk/gdkevents.c: Use G_IO_ERR|G_IO_HUP|G_IO_NVAL
as the mask for checking for GDK_INPUT_EXCEPTION events.
1998-12-15 Martin Baulig <martin@home-of-linux.org> 1998-12-15 Martin Baulig <martin@home-of-linux.org>
* acinclude.m4: Make the gettext check for for libc5 systems. * acinclude.m4: Make the gettext check for for libc5 systems.

View File

@ -1,3 +1,8 @@
1998-12-15 Elliot Lee <sopwith@bogus.cuc.ml.org>
* gdk/gdkevents.c: Use G_IO_ERR|G_IO_HUP|G_IO_NVAL
as the mask for checking for GDK_INPUT_EXCEPTION events.
1998-12-15 Martin Baulig <martin@home-of-linux.org> 1998-12-15 Martin Baulig <martin@home-of-linux.org>
* acinclude.m4: Make the gettext check for for libc5 systems. * acinclude.m4: Make the gettext check for for libc5 systems.

View File

@ -1,3 +1,8 @@
1998-12-15 Elliot Lee <sopwith@bogus.cuc.ml.org>
* gdk/gdkevents.c: Use G_IO_ERR|G_IO_HUP|G_IO_NVAL
as the mask for checking for GDK_INPUT_EXCEPTION events.
1998-12-15 Martin Baulig <martin@home-of-linux.org> 1998-12-15 Martin Baulig <martin@home-of-linux.org>
* acinclude.m4: Make the gettext check for for libc5 systems. * acinclude.m4: Make the gettext check for for libc5 systems.

View File

@ -763,9 +763,8 @@ gdk_input_add_full (gint source,
cond |= (G_IO_IN | G_IO_PRI); cond |= (G_IO_IN | G_IO_PRI);
if (condition & GDK_INPUT_WRITE) if (condition & GDK_INPUT_WRITE)
cond |= G_IO_OUT; cond |= G_IO_OUT;
/* The things that correspond to GDK_INPUT_EXCEPTION don't if (condition & GDK_INPUT_EXCEPTION)
* need to be added to events cond |= G_IO_ERR|G_IO_HUP|G_IO_NVAL;
*/
channel = g_io_channel_unix_new (source); channel = g_io_channel_unix_new (source);
result = g_io_add_watch_full (channel, 0, cond, gdk_io_invoke, result = g_io_add_watch_full (channel, 0, cond, gdk_io_invoke,

View File

@ -763,9 +763,8 @@ gdk_input_add_full (gint source,
cond |= (G_IO_IN | G_IO_PRI); cond |= (G_IO_IN | G_IO_PRI);
if (condition & GDK_INPUT_WRITE) if (condition & GDK_INPUT_WRITE)
cond |= G_IO_OUT; cond |= G_IO_OUT;
/* The things that correspond to GDK_INPUT_EXCEPTION don't if (condition & GDK_INPUT_EXCEPTION)
* need to be added to events cond |= G_IO_ERR|G_IO_HUP|G_IO_NVAL;
*/
channel = g_io_channel_unix_new (source); channel = g_io_channel_unix_new (source);
result = g_io_add_watch_full (channel, 0, cond, gdk_io_invoke, result = g_io_add_watch_full (channel, 0, cond, gdk_io_invoke,