1
0
mirror of https://github.com/janet-lang/janet synced 2025-04-04 06:16:55 +00:00
Use string/join to prevent stack overflow.
This commit is contained in:
Calvin Rose 2019-08-18 08:36:50 -05:00
parent 54170d92db
commit 1872bd344f

View File

@ -322,7 +322,7 @@
(file/write out
"#include <janet.h>\n"
"static const unsigned char bytes[] = {"
;(interpose ", " chunks)
(string/join (interpose ", " chunks))
"};\n\n"
"const unsigned char *" name "_embed = bytes;\n"
"size_t " name "_embed_size = sizeof(bytes);\n")