diff --git a/ChangeLog b/ChangeLog index 72e1251f79..1c69a40315 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2000-12-22 Alexander Larsson + + * gdk/linux-fb/gdkkeyboard-fb.c (xlate_io): + Don't use isprint() for chars > 255. + 2000-12-21 Havoc Pennington * tests/testtreeview.c: more work diff --git a/ChangeLog.pre-2-0 b/ChangeLog.pre-2-0 index 72e1251f79..1c69a40315 100644 --- a/ChangeLog.pre-2-0 +++ b/ChangeLog.pre-2-0 @@ -1,3 +1,8 @@ +2000-12-22 Alexander Larsson + + * gdk/linux-fb/gdkkeyboard-fb.c (xlate_io): + Don't use isprint() for chars > 255. + 2000-12-21 Havoc Pennington * tests/testtreeview.c: more work diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index 72e1251f79..1c69a40315 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,3 +1,8 @@ +2000-12-22 Alexander Larsson + + * gdk/linux-fb/gdkkeyboard-fb.c (xlate_io): + Don't use isprint() for chars > 255. + 2000-12-21 Havoc Pennington * tests/testtreeview.c: more work diff --git a/ChangeLog.pre-2-2 b/ChangeLog.pre-2-2 index 72e1251f79..1c69a40315 100644 --- a/ChangeLog.pre-2-2 +++ b/ChangeLog.pre-2-2 @@ -1,3 +1,8 @@ +2000-12-22 Alexander Larsson + + * gdk/linux-fb/gdkkeyboard-fb.c (xlate_io): + Don't use isprint() for chars > 255. + 2000-12-21 Havoc Pennington * tests/testtreeview.c: more work diff --git a/ChangeLog.pre-2-4 b/ChangeLog.pre-2-4 index 72e1251f79..1c69a40315 100644 --- a/ChangeLog.pre-2-4 +++ b/ChangeLog.pre-2-4 @@ -1,3 +1,8 @@ +2000-12-22 Alexander Larsson + + * gdk/linux-fb/gdkkeyboard-fb.c (xlate_io): + Don't use isprint() for chars > 255. + 2000-12-21 Havoc Pennington * tests/testtreeview.c: more work diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6 index 72e1251f79..1c69a40315 100644 --- a/ChangeLog.pre-2-6 +++ b/ChangeLog.pre-2-6 @@ -1,3 +1,8 @@ +2000-12-22 Alexander Larsson + + * gdk/linux-fb/gdkkeyboard-fb.c (xlate_io): + Don't use isprint() for chars > 255. + 2000-12-21 Havoc Pennington * tests/testtreeview.c: more work diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8 index 72e1251f79..1c69a40315 100644 --- a/ChangeLog.pre-2-8 +++ b/ChangeLog.pre-2-8 @@ -1,3 +1,8 @@ +2000-12-22 Alexander Larsson + + * gdk/linux-fb/gdkkeyboard-fb.c (xlate_io): + Don't use isprint() for chars > 255. + 2000-12-21 Havoc Pennington * tests/testtreeview.c: more work diff --git a/gdk/linux-fb/gdkkeyboard-fb.c b/gdk/linux-fb/gdkkeyboard-fb.c index 046fb64f60..1c76236c60 100644 --- a/gdk/linux-fb/gdkkeyboard-fb.c +++ b/gdk/linux-fb/gdkkeyboard-fb.c @@ -808,7 +808,7 @@ xlate_io (GIOChannel *gioc, dummy[0] = keycode; dummy[1] = 0; - len = isprint (keycode) ? 1 : 0; + len = ((keycode < 255) && isprint (keycode)) ? 1 : 0; gdk_fb_handle_key (keycode, keycode, modifier,