fix(lua): missing tab between arguments in print statement
This commit is contained in:
parent
0ca65b1306
commit
6d733e82d4
1 changed files with 1 additions and 0 deletions
|
@ -162,6 +162,7 @@ static int g_print(lua_State* L) {
|
|||
const char* str = lua_tostring(L, -1); // convert result into c-string
|
||||
lua_pop(L, 1); // pop result
|
||||
|
||||
if (i > 1) buf += '\t';
|
||||
buf += str;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue