Saving x/y no longer needed in wnoutrefresh() with the removal of the

title() stuff.
This commit is contained in:
William McBrine
2006-03-26 02:23:23 +00:00
parent aa30d51645
commit 1d8dc13844

View File

@@ -40,7 +40,7 @@
#ifdef PDCDEBUG
const char *rcsid_refresh =
"$Id: refresh.c,v 1.24 2006/03/25 23:39:55 wmcbrine Exp $";
"$Id: refresh.c,v 1.25 2006/03/26 02:23:23 wmcbrine Exp $";
#endif
/*man-start**************************************************************
@@ -136,16 +136,13 @@ int wnoutrefresh(WINDOW *win)
int first; /* first changed char on line */
int last; /* last changed char on line */
int begy, begx; /* window's place on screen */
int i, j, x, y;
int i, j;
PDC_LOG(("wnoutrefresh() - called: win=%x\n", win));
if ( (win == (WINDOW *)NULL) || (win->_flags & (_PAD|_SUBPAD)) )
return ERR;
y = win->_cury;
x = win->_curx;
begy = win->_begy;
begx = win->_begx;