See ChangeLog entry 2002-07-19 15:45 UTC-0400 David G. Holm <dholm@jsd-llc.com>

This commit is contained in:
David G. Holm
2002-07-19 19:44:05 +00:00
parent c527e4dd5c
commit eb391cfbbc
2 changed files with 6 additions and 1 deletions

View File

@@ -8,6 +8,11 @@
2002-12-01 23:12 UTC+0100 Foo Bar <foo.bar@foobar.org>
*/
2002-07-19 15:45 UTC-0400 David G. Holm <dholm@jsd-llc.com>
* source/rtl/gtwin/gtwin.c
! Don't test for dead keys when dealing with international characters
that have a negative character value.
2002-07-17 12:34 UTC-0300 Walter Negro <anegro@overnet.com.ar>
* include/hbmath.h
! Fix multiple declaration of _LIB_VERSION_TYPE if it's declared here

View File

@@ -392,7 +392,7 @@ int hb_gt_ReadKey( HB_inkey_enum eventmask )
fprintf( stdout, "-" );
#endif
}
else if( ch < 0 && ch != -32 && ch != -16 && !IgnoreKeyCodes( wKey ) )
else if( ch < 0 && ch != -32 && ch != -16 /* Hopefully all "dead" keys generate ch = 0 when used alone... && !IgnoreKeyCodes( wKey ) */ )
{
/* Process international key codes */
ch += 256;