t* My version of sent
       
   URI git clone git://git.codevoid.de/sent-sdk.git
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
   DIR commit 4d6dfeb1adec7a9af90aa496540dfa1c57cfc4e7
   DIR parent bd3cfd17e30397c9cca297c5ac065e4f85e86dce
   URI Author: Markus Teich <markus.teich@stusta.mhn.de>
       Date:   Fri, 10 Apr 2015 23:13:33 +0200
       
       use drw color scheme fixup
       
       Diffstat:
         M sent.c                              |      11 ++++-------
       
       1 file changed, 4 insertions(+), 7 deletions(-)
       ---
   DIR diff --git a/sent.c b/sent.c
       t@@ -124,7 +124,7 @@ static int slidecount = 0;
        static XWindow xw;
        static struct DC dc;
        static Drw *d = NULL;
       -static ClrScheme sc;
       +static Scm *sc;
        static int running = 1;
        
        static void (*handler[LASTEvent])(XEvent *) = {
       t@@ -415,8 +415,7 @@ void cleanup(struct DC *cur)
                        return;
                }
        
       -        drw_clr_free(sc.border);
       -        drw_clr_free(sc.fg);
       +        drw_scm_free(sc);
                drw_free(d);
        
                XDestroyWindow(xw.dpy, xw.win);
       t@@ -609,10 +608,8 @@ void xinit()
        
                if(!(d = drw_create(xw.dpy, xw.scr, xw.win, xw.w, xw.h)))
                        eprintf("Can't create drawing context.");
       -        sc.border = drw_clr_create(d, "#FFFFFF");
       -        sc.bg = sc.border;
       -        sc.fg = drw_clr_create(d, "#000000");
       -        drw_setscheme(d, &sc);
       +        sc = drw_scm_create(d, "#000000", "#FFFFFF");
       +        drw_setscheme(d, sc);
        
                xloadfonts(font);