fix(lua): missing tab between arguments in print statement

This commit is contained in:
maelstrom 2025-06-08 03:49:51 +02:00
parent 0ca65b1306
commit 6d733e82d4

View file

@ -162,6 +162,7 @@ static int g_print(lua_State* L) {
const char* str = lua_tostring(L, -1); // convert result into c-string const char* str = lua_tostring(L, -1); // convert result into c-string
lua_pop(L, 1); // pop result lua_pop(L, 1); // pop result
if (i > 1) buf += '\t';
buf += str; buf += str;
} }