cleaned the CUSTOMIZE flags - dwm - dynamic window manager
 (HTM) git clone https://git.parazyd.org/dwm
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit 2b5553b1ebf7c8e59b5ecf7128b932115ff2b313
 (DIR) parent 4688ad181da14be36e034918580ec0ce5968ffdb
 (HTM) Author: arg@10ksloc.org <unknown>
       Date:   Thu, 20 Jul 2006 15:17:52 +0200
       
       cleaned the CUSTOMIZE flags
       
       Diffstat:
         M dwm.h                               |       4 ++--
         M event.c                             |       2 ++
         M tag.c                               |       8 +++++---
       
       3 files changed, 9 insertions(+), 5 deletions(-)
       ---
 (DIR) diff --git a/dwm.h b/dwm.h
       @@ -5,7 +5,7 @@
        
        #include <X11/Xlib.h>
        
       -/********** CUSTOMIZE **********/
       +/* CUSTOMIZE */
        
        #define FONT                                "-*-terminus-medium-*-*-*-13-*-*-*-*-*-iso10646-*"
        #define BGCOLOR                                "#0a2c2d"
       @@ -23,7 +23,7 @@
        /* tags */
        enum { Tscratch, Tdev, Twww, Twork, TLast };
        
       -/********** CUSTOMIZE **********/
       +/* END CUSTOMIZE */
        
        typedef union Arg Arg;
        typedef struct Client Client;
 (DIR) diff --git a/event.c b/event.c
       @@ -59,6 +59,8 @@ static Key key[] = {
                { MODKEY|ShiftMask,        XK_Return,        spawn,                { .argv = term } },
        };
        
       +/* END CUSTOMIZE */
       +
        /* static */
        
        static void
 (DIR) diff --git a/tag.c b/tag.c
       @@ -25,17 +25,19 @@ static Rule rule[] = {
                { "Gimp.*",                { 0 },                                True},
        };
        
       -/* extern */
       -
       -/* CUSTOMIZE */
        char *tags[TLast] = {
                [Tscratch] = "scratch",
                [Tdev] = "dev",
                [Twww] = "www",
                [Twork] = "work",
        };
       +
        void (*arrange)(Arg *) = dotile;
        
       +/* END CUSTOMIZE */
       +
       +/* extern */
       +
        void
        appendtag(Arg *arg)
        {