diff options
Diffstat (limited to 'ldo.c')
-rw-r--r-- | ldo.c | 10 |
1 files changed, 0 insertions, 10 deletions
@@ -69,16 +69,6 @@ void luaD_stackerror (lua_State *L) { | |||
69 | 69 | ||
70 | 70 | ||
71 | /* | 71 | /* |
72 | ** adjust top to new value; assume that new top is valid | ||
73 | */ | ||
74 | void luaD_adjusttop (lua_State *L, StkId newtop) { | ||
75 | while (L->top < newtop) | ||
76 | setnilvalue(L->top++); | ||
77 | L->top = newtop; /* `newtop' could be lower than `top' */ | ||
78 | } | ||
79 | |||
80 | |||
81 | /* | ||
82 | ** Open a hole inside the stack at `pos' | 72 | ** Open a hole inside the stack at `pos' |
83 | */ | 73 | */ |
84 | static void luaD_openstack (lua_State *L, StkId pos) { | 74 | static void luaD_openstack (lua_State *L, StkId pos) { |