tfix some indentation in config.def.h - 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 ea9d60c5c0cb5a5c021dd106f3636f83e1452d08
 (DIR) parent f8f0c30f3ef60c024520cea5179ca2ddeb1de000
 (HTM) Author: Markus Teich <markus.teich@stusta.mhn.de>
       Date:   Tue, 25 Feb 2014 16:36:05 +0100
       
       fix some indentation in config.def.h
       
       Signed-off-by: Christoph Lohmann <20h@r-36.net>
       
       Diffstat:
         M config.def.h                        |      16 ++++++++--------
       
       1 file changed, 8 insertions(+), 8 deletions(-)
       ---
 (DIR) diff --git a/config.def.h b/config.def.h
       t@@ -5,7 +5,7 @@ static char *useragent      = "Mozilla/5.0 (X11; U; Unix; en-US) "
        static char *stylefile      = "~/.surf/style.css";
        static char *scriptfile     = "~/.surf/script.js";
        
       -static Bool kioskmode            = FALSE; /* Ignore shortcuts */
       +static Bool kioskmode       = FALSE; /* Ignore shortcuts */
        static Bool showindicators  = TRUE;  /* Show indicators in window title */
        static Bool zoomto96dpi     = TRUE;  /* Zoom pages to always emulate 96dpi */
        static Bool runinfullscreen = FALSE; /* Run in fullscreen mode by default */
       t@@ -16,7 +16,7 @@ static gfloat zoomlevel = 1.0;       /* Default zoom level */
        /* Soup default features */
        static char *cookiefile     = "~/.surf/cookies.txt";
        static char *cookiepolicies = "Aa@"; /* A: accept all; a: accept nothing,
       -                                        @: accept no third party */
       +                                        @: accept no third party */
        static char *cafile         = "/etc/ssl/certs/ca-certificates.crt";
        static char *strictssl      = FALSE; /* Refuse untrusted SSL connections */
        static time_t sessiontime   = 3600;
       t@@ -74,12 +74,12 @@ static Key keys[] = {
            { MODKEY,               GDK_l,      navigate,   { .i = +1 } },
            { MODKEY,               GDK_h,      navigate,   { .i = -1 } },
        
       -    { MODKEY,               GDK_j,           scroll_v,   { .i = +1 } },
       -    { MODKEY,               GDK_k,           scroll_v,   { .i = -1 } },
       -    { MODKEY,               GDK_b,           scroll_v,   { .i = -10000 } },
       -    { MODKEY,               GDK_space,       scroll_v,   { .i = +10000 } },
       -    { MODKEY,               GDK_i,           scroll_h,   { .i = +1 } },
       -    { MODKEY,               GDK_u,           scroll_h,   { .i = -1 } },
       +    { MODKEY,               GDK_j,      scroll_v,   { .i = +1 } },
       +    { MODKEY,               GDK_k,      scroll_v,   { .i = -1 } },
       +    { MODKEY,               GDK_b,      scroll_v,   { .i = -10000 } },
       +    { MODKEY,               GDK_space,  scroll_v,   { .i = +10000 } },
       +    { MODKEY,               GDK_i,      scroll_h,   { .i = +1 } },
       +    { MODKEY,               GDK_u,      scroll_h,   { .i = -1 } },
        
            { 0,                    GDK_F11,    fullscreen, { 0 } },
            { 0,                    GDK_Escape, stop,       { 0 } },