about summary refs log tree commit diff stats
path: root/src/ldo.c
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2022-01-03 13:24:01 -0800
committerKartik K. Agaram <vc@akkartik.com>2022-01-03 13:24:01 -0800
commitf6cf8f801cd23d2f4d4f68c030e97fde62fc51cf (patch)
tree831e1d1ca23b3624ea8011dee4fc3d61acce8e97 /src/ldo.c
parent14ab0729c9188bc96f80a9d3752b3c53ab5d6cf7 (diff)
downloadteliva-f6cf8f801cd23d2f4d4f68c030e97fde62fc51cf.tar.gz
rename
Diffstat (limited to 'src/ldo.c')
-rw-r--r--src/ldo.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ldo.c b/src/ldo.c
index 2abd935..de2ccdd 100644
--- a/src/ldo.c
+++ b/src/ldo.c
@@ -261,7 +261,7 @@ static StkId tryfuncTM (lua_State *L, StkId func) {
 extern Instruction symbexec (const Proto *pt, int lastpc, int reg);
 extern int luaL_newmetatable (lua_State *L, const char *tname);
 extern void endwin (void);
-void record_depth_of_global_function (lua_State *L, CallInfo *ci) {
+void record_metadata_about_function_call (lua_State *L, CallInfo *ci) {
   if (!isLua(ci))
     return;
   if (ci->tailcalls > 0)
@@ -327,7 +327,7 @@ int luaD_precall (lua_State *L, StkId func, int nresults) {
     for (st = L->top; st < ci->top; st++)
       setnilvalue(st);
     L->top = ci->top;
-    record_depth_of_global_function(L, ci);
+    record_metadata_about_function_call(L, ci);
     if (L->hookmask & LUA_MASKCALL) {
       L->savedpc++;  /* hooks assume 'pc' is already incremented */
       luaD_callhook(L, LUA_HOOKCALL, -1);
622fb5ce2c1e96001b'>294a1520 ^
33352536 ^



97a9bd17 ^
f3901d90 ^
1639687b ^
33352536 ^
6030d7e2 ^

33352536 ^
6030d7e2 ^
33352536 ^
6030d7e2 ^

97a9bd17 ^
f3901d90 ^
33352536 ^

6030d7e2 ^
97a9bd17 ^
294a1520 ^

ee9a9237 ^
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39