sort include + whitespace fix
Hiltjo Posthuma hiltjo@codemadness.org
Sun, 08 Nov 2015 20:38:00 +0100
1 files changed,
3 insertions(+),
3 deletions(-)
jump to
M
dwm.c
→
dwm.c
@@ -22,8 +22,8 @@ * To understand everything else, start reading main().
*/ #include <errno.h> #include <locale.h> -#include <stdarg.h> #include <signal.h> +#include <stdarg.h> #include <stdbool.h> #include <stdio.h> #include <stdlib.h>@@ -1435,8 +1435,8 @@ setfocus(Client *c) {
if(!c->neverfocus) { XSetInputFocus(dpy, c->win, RevertToPointerRoot, CurrentTime); XChangeProperty(dpy, root, netatom[NetActiveWindow], - XA_WINDOW, 32, PropModeReplace, - (unsigned char *) &(c->win), 1); + XA_WINDOW, 32, PropModeReplace, + (unsigned char *) &(c->win), 1); } sendevent(c, wmatom[WMTakeFocus]); }