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:
@ -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.
|
||||||
|
@ -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.
|
||||||
|
@ -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.
|
||||||
|
@ -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.
|
||||||
|
@ -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.
|
||||||
|
@ -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.
|
||||||
|
@ -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.
|
||||||
|
@ -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,
|
||||||
|
@ -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,
|
||||||
|
Reference in New Issue
Block a user