merged my changes - dwm - dynamic window manager
 (HTM) git clone https://git.parazyd.org/dwm
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit 73ec124ae94a699e74212cc1a2e21b30f9d4ad7c
 (DIR) parent ec11a3470c2775a75df00e3b69ee6ef60a467e34
 (HTM) Author: Anselm R Garbe <garbeam@gmail.com>
       Date:   Wed, 27 Aug 2008 15:03:35 +0100
       
       merged my changes
       Diffstat:
         M dwm.c                               |       5 ++---
       
       1 file changed, 2 insertions(+), 3 deletions(-)
       ---
 (DIR) diff --git a/dwm.c b/dwm.c
       @@ -61,7 +61,7 @@
        enum { CurNormal, CurResize, CurMove, CurLast };        /* cursor */
        enum { ColBorder, ColFG, ColBG, ColLast };              /* color */
        enum { NetSupported, NetWMName, NetLast };              /* EWMH atoms */
       -enum { WMProtocols, WMDelete, WMName, WMState, WMLast };/* default atoms */
       +enum { WMProtocols, WMDelete, WMState, WMLast };        /* default atoms */
        enum { ClkTagBar, ClkLtSymbol, ClkStatusText, ClkWinTitle,
               ClkClientWin, ClkRootWin, ClkLast };             /* clicks */
        
       @@ -1326,7 +1326,6 @@ setup(void) {
                /* init atoms */
                wmatom[WMProtocols] = XInternAtom(dpy, "WM_PROTOCOLS", False);
                wmatom[WMDelete] = XInternAtom(dpy, "WM_DELETE_WINDOW", False);
       -        wmatom[WMName] = XInternAtom(dpy, "WM_NAME", False);
                wmatom[WMState] = XInternAtom(dpy, "WM_STATE", False);
                netatom[NetSupported] = XInternAtom(dpy, "_NET_SUPPORTED", False);
                netatom[NetWMName] = XInternAtom(dpy, "_NET_WM_NAME", False);
       @@ -1634,7 +1633,7 @@ updatesizehints(Client *c) {
        void
        updatetitle(Client *c) {
                if(!gettextprop(c->win, netatom[NetWMName], c->name, sizeof c->name))
       -                gettextprop(c->win, wmatom[WMName], c->name, sizeof c->name);
       +                gettextprop(c->win, XA_WM_NAME, c->name, sizeof c->name);
        }
        
        void