1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-12 14:29:28 +00:00

Fix curses bug with delete character and standout

This commit is contained in:
Andrey A. Chernov 1994-11-06 08:33:34 +00:00
parent a0334cef15
commit 65eaa00bfb
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=4205

View File

@ -517,6 +517,10 @@ static void DelChar(int count)
{
T(("DelChar(%d) called", count));
if (back_color_erase) {
T(("back_color_erase, turning attributes off"));
vidattr(A_NORMAL);
}
if (parm_dch) {
tputs(tparm(parm_dch, count), 1, _outc);
} else {