From 97e0737bbb95ff353e174823376fb730729faf88 Mon Sep 17 00:00:00 2001 From: Beckowl <68874587+Beckowl@users.noreply.github.com> Date: Wed, 28 May 2025 18:01:40 -0300 Subject: [PATCH] expose utf8 (#829) --- src/pc/lua/smlua.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pc/lua/smlua.c b/src/pc/lua/smlua.c index c7f0a0c8f..9924b3546 100644 --- a/src/pc/lua/smlua.c +++ b/src/pc/lua/smlua.c @@ -297,7 +297,7 @@ void smlua_init(void) { luaL_requiref(L, "string", luaopen_string, 1); luaL_requiref(L, "table", luaopen_table, 1); luaL_requiref(L, "coroutine", luaopen_coroutine, 1); - // luaopen_utf8(L); + luaL_requiref(L, "utf8", luaopen_utf8, 1); smlua_bind_hooks(); smlua_bind_cobject();