diff --git a/curses.h b/curses.h index 7db5b70a..2dd9354c 100644 --- a/curses.h +++ b/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) diff --git a/readme.26 b/readme.26 index 7e8227f4..256aaf6c 100644 --- a/readme.26 +++ b/readme.26 @@ -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