From caf0f891cdb2cb93de7c9064a569c8ad8518f376 Mon Sep 17 00:00:00 2001 From: Mark Hessling Date: Wed, 10 Jan 2001 08:32:09 +0000 Subject: [PATCH] Add visibility variable to display cursor function. --- x11/pdcdisp.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/x11/pdcdisp.c b/x11/pdcdisp.c index 0794b9c0..d96b8014 100644 --- a/x11/pdcdisp.c +++ b/x11/pdcdisp.c @@ -34,7 +34,7 @@ #endif #ifdef PDCDEBUG -char *rcsid_PDCdisp = "$Id: pdcdisp.c,v 1.1 2001/01/10 08:30:05 mark Exp $"; +char *rcsid_PDCdisp = "$Id: pdcdisp.c,v 1.2 2001/01/10 08:30:06 mark Exp $"; #endif /*man-start********************************************************************* @@ -198,7 +198,7 @@ int col; if (trace_on) PDC_debug("PDC_gotoxy() - called: row %d col %d\n",row,col); #endif - XCurses_display_cursor(SP->cursrow,SP->curscol,row,col); + XCurses_display_cursor(SP->cursrow,SP->curscol,row,col,SP->visibility); return(OK); }