Mercurial > dwm-meillo
comparison client.c @ 730:8997e28553a8
made some changes more concistent
author | Anselm R. Garbe <arg@suckless.org> |
---|---|
date | Mon, 05 Feb 2007 11:19:46 +0100 |
parents | d99be681d502 |
children | 29c9b557ed95 |
comparison
equal
deleted
inserted
replaced
729:9c3bf42bdbf4 | 730:8997e28553a8 |
---|---|
5 #include <stdlib.h> | 5 #include <stdlib.h> |
6 #include <string.h> | 6 #include <string.h> |
7 #include <X11/Xatom.h> | 7 #include <X11/Xatom.h> |
8 #include <X11/Xutil.h> | 8 #include <X11/Xutil.h> |
9 | 9 |
10 /* static functions */ | 10 /* static */ |
11 | 11 |
12 static void | 12 static void |
13 detachstack(Client *c) { | 13 detachstack(Client *c) { |
14 Client **tc; | 14 Client **tc; |
15 for(tc=&stack; *tc && *tc != c; tc=&(*tc)->snext); | 15 for(tc=&stack; *tc && *tc != c; tc=&(*tc)->snext); |
63 static int | 63 static int |
64 xerrordummy(Display *dsply, XErrorEvent *ee) { | 64 xerrordummy(Display *dsply, XErrorEvent *ee) { |
65 return 0; | 65 return 0; |
66 } | 66 } |
67 | 67 |
68 /* extern functions */ | 68 /* extern */ |
69 | 69 |
70 void | 70 void |
71 configure(Client *c) { | 71 configure(Client *c) { |
72 XEvent synev; | 72 XEvent synev; |
73 | 73 |