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:
parent
a0334cef15
commit
65eaa00bfb
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=4205
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user