void
zoom(Arg *arg)
{
- Client **l, *old;
+ Client **l;
- if(!(old = sel))
+ if(!sel)
return;
+ if(sel == next(clients))
+ sel = next(sel->next);
+
for(l = &clients; *l && *l != sel; l = &(*l)->next);
*l = sel->next;
- old->next = clients; /* pop */
- clients = old;
- sel = old;
+ sel->next = clients; /* pop */
+ clients = sel;
arrange(NULL);
focus(sel);
}
sel->h = sh - 2 * sel->border - bh;
craise(sel);
resize(sel, False);
- discard_events(EnterWindowMask);
}
void
tsel = arg->i;
arrange(NULL);
- if((c = next(clients)))
- focus(c);
-
for(c = clients; c; c = next(c->next))
draw_client(c);
draw_bar();
focus(sel);
}
}
- discard_events(EnterWindowMask);
}
void
else
ban_client(c);
}
- if(sel && !sel->tags[tsel]) {
+ if(!sel || (sel && !sel->tags[tsel])) {
if((sel = next(clients))) {
craise(sel);
focus(sel);
}
}
- discard_events(EnterWindowMask);
}
void
focus(Client *c)
{
Client *old = sel;
+ XEvent ev;
+ XFlush(dpy);
sel = c;
if(old && old != c)
draw_client(old);
draw_client(c);
XSetInputFocus(dpy, c->win, RevertToPointerRoot, CurrentTime);
XFlush(dpy);
- discard_events(EnterWindowMask);
+ while(XCheckMaskEvent(dpy, EnterWindowMask, &ev));
}
static void
extern unsigned int textw(char *text);
extern unsigned int texth(void);
-/* event.c */
-extern void discard_events(long even_mask);
-
/* dev.c */
extern void update_keys(void);
extern void keypress(XEvent *e);
/* util.c */
extern void error(const char *errstr, ...);
extern void *emallocz(unsigned int size);
-extern void *emalloc(unsigned int size);
-extern void *erealloc(void *ptr, unsigned int size);
-extern char *estrdup(const char *str);
extern void spawn(Arg *arg);
extern void swap(void **p1, void **p2);
*/
#include <fcntl.h>
+#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <X11/keysym.h>
[UnmapNotify] = unmapnotify
};
-void
-discard_events(long even_mask)
-{
- XEvent ev;
- while(XCheckMaskEvent(dpy, even_mask, &ev));
-}
-
static void
buttonpress(XEvent *e)
{
#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>
-#include <string.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <unistd.h>
return res;
}
-void *
-emalloc(unsigned int size)
-{
- void *res = malloc(size);
- if(!res)
- bad_malloc(size);
- return res;
-}
-
-void *
-erealloc(void *ptr, unsigned int size)
-{
- void *res = realloc(ptr, size);
- if(!res)
- bad_malloc(size);
- return res;
-}
-
-char *
-estrdup(const char *str)
-{
- char *res = strdup(str);
- if(!res)
- bad_malloc(strlen(str));
- return res;
-}
-
void
swap(void **p1, void **p2)
{