diff options
| author | ame <[email protected]> | 2024-02-05 16:03:56 -0600 |
|---|---|---|
| committer | ame <[email protected]> | 2024-02-05 16:03:56 -0600 |
| commit | 76e750677841a659556fd20741aec33b922bcfdb (patch) | |
| tree | e4bb24263fade94cbeeaaa81a6ef5e0d352cb461 /src/io.c | |
| parent | 80f4057a7634fd51832f60ca5a91887d9cb853f2 (diff) | |
cleaning and fixes
Diffstat (limited to 'src/io.c')
| -rw-r--r-- | src/io.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -114,10 +114,12 @@ void i_pprint(lua_State* L, int indent, int skip_indent){ } else { if(!skip) print_indentation(indent + 1); } + int tuwu = lua_gettop(L); i_pprint(L,indent+1,1); printf(","); if(!skip) printf("\n"); - + + lua_settop(L, tuwu); lua_pop(L,1); } print_indentation(indent); |
