Add visibility variable to display cursor function.

This commit is contained in:
Mark Hessling
2001-01-10 08:32:09 +00:00
parent 4ce3e19130
commit caf0f891cd

View File

@@ -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);
}