From 000e1f9f5858297588e708acdb87f4a5a4b94789 Mon Sep 17 00:00:00 2001 From: ache Date: Sun, 6 Nov 1994 08:33:34 +0000 Subject: Fix curses bug with delete character and standout --- lib/libncurses/lib_doupdate.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'lib/libncurses') diff --git a/lib/libncurses/lib_doupdate.c b/lib/libncurses/lib_doupdate.c index f85d099..4254177 100644 --- a/lib/libncurses/lib_doupdate.c +++ b/lib/libncurses/lib_doupdate.c @@ -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 { -- cgit v1.1