aboutsummarylogtreecommitdiffstats
path: root/st.c
diff options
context:
space:
mode:
authorAurélien Aptel2010-07-08 16:31:41 +0200
committerAurélien Aptel2010-07-08 16:31:41 +0200
commit8cb433277dfb9752807918987fd0cb35556f8bf9 (patch)
tree4b55ff550abfb7d0b9fe8cd493c8b3ac99f6c440 /st.c
parenta53be57bc3d9c37541769c7a9508be7aa5489f38 (diff)
downloadaur-8cb433277dfb9752807918987fd0cb35556f8bf9.tar.gz
fixed background color bug (thx Devin J. Pohly).
Diffstat (limited to 'st.c')
-rwxr-xr-xst.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/st.c b/st.c
index a571a28ed329..6b525c38da87 100755
--- a/st.c
+++ b/st.c
@@ -597,7 +597,7 @@ tsetattr(int *attr, int l) {
term.c.attr.fg = DefaultFG;
break;
case 49:
- term.c.attr.fg = DefaultBG;
+ term.c.attr.bg = DefaultBG;
break;
default:
if(BETWEEN(attr[i], 30, 37))
@@ -1032,9 +1032,9 @@ xclear(int x1, int y1, int x2, int y2) {
void
xhints(void)
{
- XClassHint chint = {TNAME, TNAME};
- XWMHints wmhint = {.flags = InputHint, .input = 1};
- XSizeHints shint = {
+ XClassHint class = {TNAME, TNAME};
+ XWMHints wm = {.flags = InputHint, .input = 1};
+ XSizeHints size = {
.flags = PSize | PResizeInc | PBaseSize,
.height = xw.h,
.width = xw.w,
@@ -1043,7 +1043,7 @@ xhints(void)
.base_height = 2*BORDER,
.base_width = 2*BORDER,
};
- XSetWMProperties(xw.dis, xw.win, NULL, NULL, NULL, 0, &shint, &wmhint, &chint);
+ XSetWMProperties(xw.dis, xw.win, NULL, NULL, NULL, 0, &size, &wm, &class);
}
void