expose utf8 (#829)

This commit is contained in:
Beckowl 2025-05-28 18:01:40 -03:00 committed by GitHub
parent 3b7b413989
commit 97e0737bbb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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();