See ChangeLog entry 2002-07-11 14:30 UTC-0400 David G. Holm <dholm@jsd-llc.com>

This commit is contained in:
David G. Holm
2002-07-11 18:33:48 +00:00
parent 449f60cc6d
commit 346520e0e3
3 changed files with 14 additions and 0 deletions

View File

@@ -8,6 +8,12 @@
2002-12-01 23:12 UTC+0100 Foo Bar <foo.bar@foobar.org>
*/
2002-07-11 14:30 UTC-0400 David G. Holm <dholm@jsd-llc.com>
* config/dos/djgpp.cf
+ Added the -lm option to LDFLAGS to enable math error handling.
* source/rtl/gtwin/gtwin.c
! Shift Tab is now properly reported as 271.
2002-07-11 02:30 UTC-0300 Walter Negro <anegro@overnet.com.ar>
* source/vm/itemapi.c
! Fix rounded for big numbers ( more of 16 significant numbers ).

View File

@@ -21,6 +21,7 @@ endif
LD = gcc
LD_OUT = -o
LDFLAGS = -lm
# Add all libraries specified in CONTRIBS and LIBS.
ifeq ($(HB_LIB_COMPILE),)

View File

@@ -449,6 +449,13 @@ int hb_gt_ReadKey( HB_inkey_enum eventmask )
#endif
}
}
else if( ch == 9 && wKey == 15 && ( dwState & SHIFT_PRESSED ) )
{
#ifdef HB_DEBUG_KEYBOARD
fprintf( stdout, "@" );
#endif
ch = wKey + 256; /* Shift+TAB */
}
}
if( extended )
{