JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
replaced getproto with a saner function, now old-school artifacts of WM times in...
[dwm.git] / main.c
diff --git a/main.c b/main.c
index 97fdbaf..da95d95 100644 (file)
--- a/main.c
+++ b/main.c
@@ -172,24 +172,6 @@ xerrorstart(Display *dsply, XErrorEvent *ee) {
 
 /* extern */
 
-int
-getproto(Window w) {
-       int i, format, protos, status;
-       unsigned long extra, res;
-       Atom *protocols, real;
-
-       protos = 0;
-       status = XGetWindowProperty(dpy, w, wmatom[WMProtocols], 0L, 20L, False,
-                       XA_ATOM, &real, &format, &res, &extra, (unsigned char **)&protocols);
-       if(status != Success || protocols == 0)
-               return protos;
-       for(i = 0; i < res; i++)
-               if(protocols[i] == wmatom[WMDelete])
-                       protos |= PROTODELWIN;
-       free(protocols);
-       return protos;
-}
-
 void
 sendevent(Window w, Atom a, long value) {
        XEvent e;