about summary refs log tree commit diff stats
path: root/src/teliva.h
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2022-03-07 08:52:41 -0800
committerKartik K. Agaram <vc@akkartik.com>2022-03-07 08:52:41 -0800
commit7a315e3d9f1c668b54d57b472b612c7f6d738ede (patch)
treebdb5ee31c70ec27491a7c20b08fb25e8dd43205c /src/teliva.h
parent503ad706fbe7400f197f92dc1d895fd2f3db7cb8 (diff)
downloadteliva-7a315e3d9f1c668b54d57b472b612c7f6d738ede.tar.gz
extract a common function call
Diffstat (limited to 'src/teliva.h')
-rw-r--r--src/teliva.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/teliva.h b/src/teliva.h
index a7fb084..db2138d 100644
--- a/src/teliva.h
+++ b/src/teliva.h
@@ -165,7 +165,7 @@ extern void save_editor_state(int rowoff, int coloff, int cy, int cx);
 int editor_view_in_progress(lua_State* L);
 
 extern void assign_call_graph_depth_to_name(lua_State* L, int depth, const char* name);
-extern char* caller(lua_State* L);
+extern char* get_caller(lua_State* L);
 extern void save_caller(lua_State* L, const char* name, int call_graph_depth);
 extern void draw_callers_of_current_definition(lua_State* L);
 extern void append_to_audit_log(lua_State* L, const char* buffer);