Lines Matching refs:win
53 wdelch(WINDOW *win) in wdelch() argument
57 int cury = win->_cury; in wdelch()
58 short curx = win->_curx; in wdelch()
62 end = &win->_y[cury][win->_maxx - 1]; in wdelch()
63 temp2 = &win->_y[cury][curx + 1]; in wdelch()
67 win->_nbyte = -1; in wdelch()
70 win->_insmode = TRUE; in wdelch()
71 if (_mbvalid(win) == ERR) in wdelch()
73 curx = win->_curx; in wdelch()
74 temp1 = &win->_y[cury][curx]; in wdelch()
86 temp2 = &win->_y[cury][curx+s]; in wdelch()
93 *temp1++ = win->_bkgd; in wdelch()
97 (*_y16update)(win, 1, win->_maxx - curx, cury, curx); in wdelch()
100 win->_lastch[cury] = win->_maxx - 1; in wdelch()
101 if (win->_firstch[cury] > curx) in wdelch()
102 win->_firstch[cury] = curx; in wdelch()
104 win->_flags |= _WINCHANGED; in wdelch()
106 if (win->_sync) in wdelch()
107 wsyncup(win); in wdelch()
109 return (win->_immed ? wrefresh(win) : OK); in wdelch()