aboutsummaryrefslogtreecommitdiff
path: root/st.c
diff options
context:
space:
mode:
authorAurélien Aptel <aurelien.aptel@gmail.com>2010-08-31 14:52:52 +0200
committerAurélien Aptel <aurelien.aptel@gmail.com>2010-08-31 14:52:52 +0200
commit80f70f1c224ec6fb10f04c29ea2205f47ae553ff (patch)
tree390b224c764cca1b6cd2ee5502f2e012f9c3e157 /st.c
parent23cc3fc5715a650c91e3b99074c31aaf63e2102c (diff)
downloadst-80f70f1c224ec6fb10f04c29ea2205f47ae553ff.tar.gz
st-80f70f1c224ec6fb10f04c29ea2205f47ae553ff.tar.bz2
use GLYPH_SET to test if a char is set; cleanup.
Diffstat (limited to 'st.c')
-rw-r--r--st.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/st.c b/st.c
index 7567e57..665dc1a 100644
--- a/st.c
+++ b/st.c
@@ -245,7 +245,7 @@ static char *getseltext() {
ptr = str = malloc (sz);
for(y = 0; y < term.row; y++) {
for(x = 0; x < term.col; x++) {
- if(term.line[y][x].c && (ls=selected(x, y))) {
+ if(term.line[y][x].state & GLYPH_SET && (ls=selected(x, y))) {
*ptr = term.line[y][x].c;
ptr++;
}
@@ -1421,11 +1421,9 @@ resize(XEvent *e) {
row = xw.bufh / xw.ch;
tresize(col, row);
ttyresize(col, row);
+ xw.bufh = MAX(1, xw.bufh);
+ xw.bufw = MAX(1, xw.bufw);
XFreePixmap(xw.dis, xw.buf);
- if(xw.bufh<1)
- xw.bufh = 1;
- if(xw.bufw<1)
- xw.bufw = 1;
xw.buf = XCreatePixmap(xw.dis, xw.win, xw.bufw, xw.bufh, XDefaultDepth(xw.dis, xw.scr));
draw(SCREEN_REDRAW);
}
@@ -1435,7 +1433,9 @@ run(void) {
XEvent ev;
fd_set rfd;
int xfd = XConnectionNumber(xw.dis);
- long mask = ExposureMask | KeyPressMask | StructureNotifyMask | FocusChangeMask | PointerMotionMask | ButtonPressMask | ButtonReleaseMask;
+ long mask = ExposureMask | KeyPressMask | StructureNotifyMask
+ | FocusChangeMask | PointerMotionMask | ButtonPressMask
+ | ButtonReleaseMask;
XSelectInput(xw.dis, xw.win, mask);
XResizeWindow(xw.dis, xw.win, xw.w, xw.h); /* XXX: fix resize bug in wmii (?) */