diff --git a/curses.h b/curses.h index c6e39eac..73549846 100644 --- a/curses.h +++ b/curses.h @@ -16,7 +16,7 @@ * See the file maintain.er for details of the current maintainer. **************************************************************************/ -/* $Id: curses.h,v 1.120 2006/02/04 14:36:15 wmcbrine Exp $ */ +/* $Id: curses.h,v 1.121 2006/02/04 19:35:05 wmcbrine Exp $ */ /* ---------------------------------------------------------------------- PDCurses @@ -1683,7 +1683,7 @@ int PDC_CDECL PDC_set_line_color(short); #define PDC_save_key_modifiers(flag) (SP->save_key_modifiers = flag) #define PDC_return_key_modifiers(flag) (SP->return_key_modifiers = flag) -/* need to document these */ +/* need to get rid of these */ #define wtitle(w, s, a) (w->_title = s, w->_title_attr = (chtype)a) #define wtitleofs(w, ofs) (w->_title_ofs = ofs) diff --git a/pdcurses/inopts.c b/pdcurses/inopts.c index 57678e22..b0006363 100644 --- a/pdcurses/inopts.c +++ b/pdcurses/inopts.c @@ -51,7 +51,7 @@ #ifdef PDCDEBUG const char *rcsid_inopts = - "$Id: inopts.c,v 1.17 2006/02/04 19:30:32 wmcbrine Exp $"; + "$Id: inopts.c,v 1.18 2006/02/04 19:35:06 wmcbrine Exp $"; #endif /*man-start********************************************************************* @@ -171,7 +171,8 @@ const char *rcsid_inopts = The meta() function is provided for portability. By default, 8 bits are returned. - notimeout(), noqiflush() and qiflush() are no-ops in PDCurses. + intrflush(), notimeout(), noqiflush() and qiflush() are no-ops + in PDCurses. X/Open Return Value: All functions return OK on success and ERR on error. @@ -254,19 +255,8 @@ int PDC_CDECL halfdelay(int tenths) int PDC_CDECL intrflush(WINDOW *win, bool bf) { -#if 0 - int y, maxy; - PDC_LOG(("intrflush() - called\n")); - if (win == (WINDOW *)NULL) - return ERR; - - maxy = win->_maxy - 1; - - for (y = 0; y <= maxy; y++) - win->_firstch[y] = _NO_CHANGE; -#endif return OK; }