diff options
| author | ame <[email protected]> | 2024-05-25 04:08:59 -0500 |
|---|---|---|
| committer | ame <[email protected]> | 2024-05-25 04:08:59 -0500 |
| commit | 237fcfbd61a9895326538a274f025d9ed57a3903 (patch) | |
| tree | 44c36c7d38ae68f562a0290c26bae4a79ab87f1e /src/io.c | |
| parent | 8d169e81694b587a425993cb11297e8a9183b37c (diff) | |
fixed deepcopy
Diffstat (limited to 'src/io.c')
| -rw-r--r-- | src/io.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -137,7 +137,7 @@ void i_pprint(lua_State* L, int indent, int skip_indent){ break; case LUA_TFUNCTION: if(!skip_indent) print_indentation(indent); - printf(color_yellow"(%p)"color_reset, lua_topointer(L, -1)); + printf(color_yellow"(fn,%p)"color_reset, lua_topointer(L, -1)); break; case LUA_TUSERDATA: if(!skip_indent) print_indentation(indent); |
