diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2017-11-01 16:20:48 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2017-11-01 16:20:48 -0200 |
commit | b9e76be8a691ed83a716a85c6b85cb80f66cc480 (patch) | |
tree | 851df615f2cb00ba1bdf4042336a56b7c4609a40 /ltests.c | |
parent | c5482468fde11c6c169da3b331a0653455f8fc94 (diff) | |
download | lua-b9e76be8a691ed83a716a85c6b85cb80f66cc480.tar.gz lua-b9e76be8a691ed83a716a85c6b85cb80f66cc480.tar.bz2 lua-b9e76be8a691ed83a716a85c6b85cb80f66cc480.zip |
using 'L->func' when possible
Diffstat (limited to 'ltests.c')
-rw-r--r-- | ltests.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: ltests.c,v 2.224 2017/10/01 19:17:51 roberto Exp roberto $ | 2 | ** $Id: ltests.c,v 2.225 2017/10/04 21:56:32 roberto Exp roberto $ |
3 | ** Internal Module for Debugging of the Lua Implementation | 3 | ** Internal Module for Debugging of the Lua Implementation |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -46,7 +46,7 @@ void *l_Trick = 0; | |||
46 | int islocked = 0; | 46 | int islocked = 0; |
47 | 47 | ||
48 | 48 | ||
49 | #define obj_at(L,k) s2v(L->ci->func + (k)) | 49 | #define obj_at(L,k) s2v(L->func + (k)) |
50 | 50 | ||
51 | 51 | ||
52 | static int runC (lua_State *L, lua_State *L1, const char *pc); | 52 | static int runC (lua_State *L, lua_State *L1, const char *pc); |