aboutsummaryrefslogtreecommitdiff
path: root/src/io.c
diff options
context:
space:
mode:
authorame <[email protected]>2024-05-25 04:08:59 -0500
committerame <[email protected]>2024-05-25 04:08:59 -0500
commit237fcfbd61a9895326538a274f025d9ed57a3903 (patch)
tree44c36c7d38ae68f562a0290c26bae4a79ab87f1e /src/io.c
parent8d169e81694b587a425993cb11297e8a9183b37c (diff)
fixed deepcopy
Diffstat (limited to 'src/io.c')
-rw-r--r--src/io.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/io.c b/src/io.c
index 06fa535..d86283d 100644
--- a/src/io.c
+++ b/src/io.c
@@ -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);