4 /* Wdelch() deletes the character at the window cursor, and the
5 characters to the right of it are shifted left, inserting a
6 space at the last position of the line.
17 int maxx
= win
->_maxx
;
19 end
= &win
->_line
[y
][maxx
];
20 temp1
= &win
->_line
[y
][x
];
22 while (temp1
< end
) *temp1
++ = *temp2
++;
23 *temp1
= ' ' | (win
->_attrs
& ATR_MSK
);
24 win
->_maxchng
[y
] = maxx
;
25 if (win
->_minchng
[y
] == _NO_CHANGE
|| win
->_minchng
[y
] > x
)