Introduction
Introduction Statistics Contact Development Disclaimer Help
sort include + whitespace fix - dwm - dynamic window manager
git clone git://git.suckless.org/dwm
Log
Files
Refs
README
LICENSE
---
commit e941181f464e43765bab98509ef6524e688a46ff
parent 43e82adf0dc37411fdcc6406b3cdf5d572387b9f
Author: Hiltjo Posthuma <[email protected]>
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]);
}
You are viewing proxied material from suckless.org. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.