renamed WM_PROTOCOL_DELWIN into PROTODELWIN - dwm - dynamic window manager
 (HTM) git clone https://git.parazyd.org/dwm
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit 080a38d62d18be2ab98f66ed190d3d9e3463fec9
 (DIR) parent ab7a11c0c73fa101c8e0234f8214284888fb8156
 (HTM) Author: arg@10ksloc.org <unknown>
       Date:   Tue,  1 Aug 2006 16:44:23 +0200
       
       renamed WM_PROTOCOL_DELWIN into PROTODELWIN
       
       Diffstat:
         M client.c                            |       2 +-
         M dwm.h                               |       2 +-
         M main.c                              |       2 +-
       
       3 files changed, 3 insertions(+), 3 deletions(-)
       ---
 (DIR) diff --git a/client.c b/client.c
       @@ -191,7 +191,7 @@ killclient(Arg *arg)
        {
                if(!sel)
                        return;
       -        if(sel->proto & WM_PROTOCOL_DELWIN)
       +        if(sel->proto & PROTODELWIN)
                        sendevent(sel->win, wmatom[WMProtocols], wmatom[WMDelete]);
                else
                        XKillClient(dpy, sel->win);
 (DIR) diff --git a/dwm.h b/dwm.h
       @@ -9,7 +9,7 @@
        /* mask shorthands, used in event.c and client.c */
        #define BUTTONMASK                (ButtonPressMask | ButtonReleaseMask)
        #define MOUSEMASK                (BUTTONMASK | PointerMotionMask)
       -#define WM_PROTOCOL_DELWIN        1
       +#define PROTODELWIN                1
        
        typedef union Arg Arg;
        typedef struct Client Client;
 (DIR) diff --git a/main.c b/main.c
       @@ -111,7 +111,7 @@ getproto(Window w)
                }
                for(i = 0; i < res; i++) {
                        if(protocols[i] == wmatom[WMDelete])
       -                        protos |= WM_PROTOCOL_DELWIN;
       +                        protos |= PROTODELWIN;
                }
                free((char *) protocols);
                return protos;