From 178998f808a7ff0fe6774750e5d7e52fa78fd4b9 Mon Sep 17 00:00:00 2001 From: The Ghost of FOSS' Future <163201376+sneedgroup-holder@users.noreply.github.com> Date: Thu, 9 Jan 2025 00:33:37 +0000 Subject: [PATCH] Update qjs.c --- qjs.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/qjs.c b/qjs.c index 4f0d634..9d14e58 100644 --- a/qjs.c +++ b/qjs.c @@ -668,7 +668,7 @@ start: eval_buf(ctx, str, strlen(str), "", JS_EVAL_TYPE_MODULE); } - // polyfiller(ctx) + // polyfiller(ctx); for(i = 0; i < include_count; i++) { if (eval_file(ctx, include_list[i], 0)) @@ -715,7 +715,7 @@ start: goto fail; } - polyfiller(ctx) + polyfiller(ctx); if (interactive) { js_std_eval_binary(ctx, qjsc_repl, qjsc_repl_size, 0);