Fix delaytenths bug

This commit is contained in:
Mark Hessling
2002-03-22 22:37:27 +00:00
parent 1c11cc6066
commit f40a6dfebf
2 changed files with 4 additions and 2 deletions

View File

@@ -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)

View File

@@ -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