diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 3d28b27fd0..35bb5f6707 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -1,3 +1,8 @@ +20000515-17:15 GMT+1 Ryszard Glab + + *source/rtl/gtcrs/gtcrs.c + *fixed initialization of curses library + 20000514-22:25 GMT-8 Ron Pinkas * source/compiler/harbour.l diff --git a/harbour/source/rtl/gtcrs/gtcrs.c b/harbour/source/rtl/gtcrs/gtcrs.c index 0ae4e70dcd..37cb3a4139 100644 --- a/harbour/source/rtl/gtcrs/gtcrs.c +++ b/harbour/source/rtl/gtcrs/gtcrs.c @@ -102,11 +102,10 @@ static void hb_gt_Initialize_Terminal( void ) } } - cbreak(); noecho(); - nodelay( stdscr, 1 ); scrollok( stdscr, FALSE ); raw(); + nodelay( stdscr, TRUE ); keypad( stdscr, FALSE ); s_under_xterm = !strncmp( getenv("TERM"), "xterm", 5 );