summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorache <ache@FreeBSD.org>1994-12-02 19:43:34 +0000
committerache <ache@FreeBSD.org>1994-12-02 19:43:34 +0000
commit7ac6d5a8b5b268cdac980543d73846022972f292 (patch)
tree8cf08bf2cc045a4c4b87eaab8fdf51bfe023d764 /lib
parent5a68a901c1fecf5ceb5378e5a0db9e62b13af990 (diff)
downloadFreeBSD-src-7ac6d5a8b5b268cdac980543d73846022972f292.zip
FreeBSD-src-7ac6d5a8b5b268cdac980543d73846022972f292.tar.gz
bkgd() family fixes
Diffstat (limited to 'lib')
-rw-r--r--lib/libncurses/lib_addch.c8
-rw-r--r--lib/libncurses/lib_bkgd.c7
2 files changed, 11 insertions, 4 deletions
diff --git a/lib/libncurses/lib_addch.c b/lib/libncurses/lib_addch.c
index 00684ed..5ec6576 100644
--- a/lib/libncurses/lib_addch.c
+++ b/lib/libncurses/lib_addch.c
@@ -56,10 +56,14 @@ chtype ch = c;
T(("win attr = %x", win->_attrs));
ch |= win->_attrs;
- if (win->_line[y][x]&A_CHARTEXT == ' ')
- ch |= win->_bkgd;
+ /* Don't attempt to replace any given attributes */
+ if ((ch&A_ATTRIBUTES) == A_NORMAL) {
+ if (ch == ' ')
+ ch = win->_bkgd;
else
ch |= (win->_bkgd&A_ATTRIBUTES);
+ }
+
T(("bkg = %x -> ch = %x", win->_bkgd, ch));
if (win->_line[y][x] != ch) {
diff --git a/lib/libncurses/lib_bkgd.c b/lib/libncurses/lib_bkgd.c
index 0210995..f54e4d1 100644
--- a/lib/libncurses/lib_bkgd.c
+++ b/lib/libncurses/lib_bkgd.c
@@ -27,10 +27,13 @@ int x, y;
T(("wbkgd(%x, %x) called", win, ch));
for (y = 0; y < win->_maxy; y++)
for (x = 0; x < win->_maxx; x++)
- if (win->_line[y][x]&A_CHARTEXT == ' ')
- win->_line[y][x] |= ch;
+ /* Don't attempt to replace existing attrs */
+ if ((win->_line[y][x]&A_ATTRIBUTES) == A_NORMAL) {
+ if (win->_line[y][x] == ' ')
+ win->_line[y][x] = ch;
else
win->_line[y][x] |= (ch&A_ATTRIBUTES);
+ }
touchwin(win);
return OK;
}
OpenPOWER on IntegriCloud