Lines Matching refs:win
51 wdelch(WINDOW *win) in wdelch() argument
55 int cury = win->_cury; in wdelch()
56 short curx = win->_curx; in wdelch()
60 end = &win->_y[cury][win->_maxx - 1]; in wdelch()
61 temp2 = &win->_y[cury][curx + 1]; in wdelch()
65 win->_nbyte = -1; in wdelch()
68 win->_insmode = TRUE; in wdelch()
69 if (_mbvalid(win) == ERR) in wdelch()
71 curx = win->_curx; in wdelch()
72 temp1 = &win->_y[cury][curx]; in wdelch()
84 temp2 = &win->_y[cury][curx+s]; in wdelch()
91 *temp1++ = win->_bkgd; in wdelch()
95 (*_y16update)(win, 1, win->_maxx - curx, cury, curx); in wdelch()
98 win->_lastch[cury] = win->_maxx - 1; in wdelch()
99 if (win->_firstch[cury] > curx) in wdelch()
100 win->_firstch[cury] = curx; in wdelch()
102 win->_flags |= _WINCHANGED; in wdelch()
104 if (win->_sync) in wdelch()
105 wsyncup(win); in wdelch()
107 return (win->_immed ? wrefresh(win) : OK); in wdelch()