From 1d8dc138440fcef55d62ac20ecb489eba8d3f140 Mon Sep 17 00:00:00 2001 From: William McBrine Date: Sun, 26 Mar 2006 02:23:23 +0000 Subject: [PATCH] Saving x/y no longer needed in wnoutrefresh() with the removal of the title() stuff. --- pdcurses/refresh.c | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/pdcurses/refresh.c b/pdcurses/refresh.c index c69d6fdb..1a14fa29 100644 --- a/pdcurses/refresh.c +++ b/pdcurses/refresh.c @@ -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;