commit d2e4989c3c5a50bffe56030b6af85f747b39a4f9
parent 7817d0ec83b16dad6ad4f68039a58c371dbca38e
Author: nzl <uruabi@gmail.com>
Date: Thu, 22 Feb 2018 03:26:06 +0800
Script text shouldn't go through formatted conversion
Diffstat:
| M | surf.c | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --dropbox 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);
}