From: nzl Date: Wed, 21 Feb 2018 19:26:06 +0000 (+0800) Subject: Script text shouldn't go through formatted conversion X-Git-Url: https://git.danieliu.xyz/?p=surf.git;a=commitdiff_plain;h=d2e4989c3c5a50bffe56030b6af85f747b39a4f9;hp=7817d0ec83b16dad6ad4f68039a58c371dbca38e Script text shouldn't go through formatted conversion --- diff --git a/surf.c b/surf.c index 95b09be..f01a91c 100644 --- a/surf.c +++ b/surf.c @@ -921,7 +921,7 @@ runscript(Client *c) gsize l; if (g_file_get_contents(scriptfile, &script, &l, NULL) && l) - evalscript(c, script); + evalscript(c, "%s", script); g_free(script); }