tCleanup previous patch. - surf - customized build of surf, the suckless webkit browser
 (HTM) git clone git://src.adamsgaard.dk/surf
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit 590a9bb19d331320643c50cf90433b94c7a3ba28
 (DIR) parent df96fe4171c525968a81c794dc534dfb628807e7
 (HTM) Author: Troels Henriksen <athas@sigkill.dk>
       Date:   Sat,  5 Nov 2011 12:06:08 +0100
       
       Cleanup previous patch.
       Diffstat:
         M config.def.h                        |       4 ++--
         M surf.c                              |       2 +-
       
       2 files changed, 3 insertions(+), 3 deletions(-)
       ---
 (DIR) diff --git a/config.def.h b/config.def.h
       t@@ -15,11 +15,11 @@ static char *strictssl      = FALSE; /* Refuse untrusted SSL connections */
                "prop=\"`xprop -id $2 $0 | cut -d '\"' -f 2 | dmenu`\" &&" \
                "xprop -id $2 -f $1 8s -set $1 \"$prop\"", \
                p, q, winid, NULL } }
       -#define DOWNLOAD(d, u) {                  \
       +#define DOWNLOAD(d) {                          \
                .v = (char *[]){ "/bin/sh", "-c", \
                "xterm -e \"wget '$0' \
        --load-cookies ~/.surf/cookies.txt \
       ---user-agent '$1' ; sleep 5\"", d, u, NULL } }
       +--user-agent '$1' ; sleep 5\"", d, useragent, NULL } }
        #define MODKEY GDK_CONTROL_MASK
        static Key keys[] = {
            /* modifier                    keyval      function    arg             Focus */
 (DIR) diff --git a/surf.c b/surf.c
       t@@ -345,7 +345,7 @@ initdownload(WebKitWebView *view, WebKitDownload *o, Client *c) {
                Arg arg;
        
                updatewinid(c);
       -        arg = (Arg)DOWNLOAD((char *)webkit_download_get_uri(o), useragent);
       +        arg = (Arg)DOWNLOAD((char *)webkit_download_get_uri(o));
                spawn(c, &arg);
                return FALSE;
        }