dwm
dynamic window manager
git clone https://9o.is/git/dwm.git
commit 5870161b970814a2b9e698a5c2cbd1064bbfc7cc parent b7157e45994bdf8e78d99140e96bcc89fd1b8f53 Author: Hiltjo Posthuma <hiltjo@codemadness.org> Date: Sun, 8 Nov 2015 20:38:00 +0100 sort include + whitespace fix Diffstat:
| M | dwm.c | | | 6 | +++--- |
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/dwm.c b/dwm.c @@ -22,8 +22,8 @@ */ #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]); }