mirror of
https://github.com/VARCem/PDCurses.git
synced 2026-09-23 15:25:01 +00:00
Fix delaytenths bug
This commit is contained in:
5
curses.h
5
curses.h
@@ -18,7 +18,7 @@
|
||||
***************************************************************************
|
||||
*/
|
||||
/*
|
||||
$Id: curses.h,v 1.9 2002/01/12 04:04:18 mark Exp $
|
||||
$Id: curses.h,v 1.10 2002/03/22 22:37:17 mark Exp $
|
||||
*/
|
||||
/*
|
||||
*----------------------------------------------------------------------
|
||||
@@ -2071,7 +2071,8 @@ int PDC_CDECL PDC_set_line_color( /* short */ );
|
||||
#define wstandout(w) wattrset(w, A_STANDOUT)
|
||||
|
||||
#if !defined(UNIX) && !defined(XCURSES)
|
||||
# define nocbreak() (SP->cbreak = FALSE)
|
||||
/* set delaytenths = 0 added - William McBrine */
|
||||
# define nocbreak() (SP->cbreak = FALSE, SP->delaytenths = 0)
|
||||
# define cbreak() (SP->cbreak = TRUE)
|
||||
# define nocrmode() (SP->cbreak = FALSE)
|
||||
# define crmode() (SP->cbreak = TRUE)
|
||||
|
||||
@@ -10,6 +10,7 @@ This release of PDCurses includes the following changes:
|
||||
BUGS FIXED:
|
||||
Allow accented characters on Win32 platformwhen run on non-English keyboards.
|
||||
Allow "special" characters like Ctrl-S, Ctrl-Q under OS/2 to be returned.
|
||||
Some bugs with halfdelay() principally on DOS fixed by William McBrine.
|
||||
|
||||
NEW COMPILER SUPPORT:
|
||||
None
|
||||
|
||||
Reference in New Issue
Block a user