URI:
       tA typo in SETPROP macro: should be ``printf %b'', not ``printf''. - surf - customized build of surf, the suckless webkit browser
  HTML git clone git://src.adamsgaard.dk/surf
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
   DIR commit e0e4a844f76311f4bfed542d34459dcfc68f9ddf
   DIR parent f6dc8b25418e541f7d7b9c3ce63c763918a15d90
  HTML Author: Alexander Sedov <alex0player@gmail.com>
       Date:   Sat, 30 Mar 2013 00:31:23 +0400
       
       A typo in SETPROP macro: should be ``printf %b'', not ``printf''.
       
       Signed-off-by: Christoph Lohmann <20h@r-36.net>
       
       Diffstat:
         M config.def.h                        |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
   DIR diff --git a/config.def.h b/config.def.h
       t@@ -23,7 +23,7 @@ static Bool hidebackground  = FALSE;
        
        #define SETPROP(p, q) { \
                .v = (char *[]){ "/bin/sh", "-c", \
       -                "prop=\"`xprop -id $2 $0 | cut -d '\"' -f 2 | xargs -0 printf | dmenu`\" &&" \
       +                "prop=\"`xprop -id $2 $0 | cut -d '\"' -f 2 | xargs -0 printf %b | dmenu`\" &&" \
                        "xprop -id $2 -f $1 8s -set $1 \"$prop\"", \
                        p, q, winid, NULL \
                } \