X-Git-Url: https://ncurses.scripts.mit.edu/?p=ncurses.git;a=blobdiff_plain;f=ncurses%2Ftinfo%2Ftinfo_driver.c;h=990b1773fb44556d9ede965fae62aa4578712f84;hp=d2df9911803a8c2718b678a38bc1b98d72dde42b;hb=8fc9fa113b27e0749e0840fef04c9d4acad4aae7;hpb=da1f84b7eb32f17e91f6de242132ab3b2d462148 diff --git a/ncurses/tinfo/tinfo_driver.c b/ncurses/tinfo/tinfo_driver.c index d2df9911..990b1773 100644 --- a/ncurses/tinfo/tinfo_driver.c +++ b/ncurses/tinfo/tinfo_driver.c @@ -42,7 +42,7 @@ #endif #endif -MODULE_ID("$Id: tinfo_driver.c,v 1.1 2009/05/23 22:40:30 juergen Exp $") +MODULE_ID("$Id: tinfo_driver.c,v 1.2 2009/08/16 14:17:08 tom Exp $") /* * SCO defines TIOCGSIZE and the corresponding struct. Other systems (SunOS, @@ -173,7 +173,7 @@ static int drv_doupdate(TERMINAL_CONTROL_BLOCK * TCB) { AssertTCB(); - return _nc_tinfo_doupdate(TCB->csp); + return TINFO_DOUPDATE(TCB->csp); } /* @@ -945,7 +945,7 @@ drv_mvcur(TERMINAL_CONTROL_BLOCK * TCB, int yold, int xold, int ynew, int xnew) { SCREEN *sp = TCB->csp; AssertTCB(); - return _nc_tinfo_mvcur(sp, yold, xold, ynew, xnew); + return TINFO_MVCUR(sp, yold, xold, ynew, xnew); } static void @@ -1383,7 +1383,7 @@ drv_kyExist(TERMINAL_CONTROL_BLOCK * TCB, int key) AssertTCB(); if (TCB->csp) - res = _nc_tinfo_has_key(TCB->csp, key) == 0 ? FALSE : TRUE; + res = TINFO_HAS_KEY(TCB->csp, key) == 0 ? FALSE : TRUE; return res; }