summaryrefslogtreecommitdiff
path: root/lvm.c
diff options
context:
space:
mode:
Diffstat (limited to 'lvm.c')
-rw-r--r--lvm.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/lvm.c b/lvm.c
index fd5481bc..a589dd2c 100644
--- a/lvm.c
+++ b/lvm.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lvm.c,v 1.151 2001/01/10 18:56:11 roberto Exp roberto $ 2** $Id: lvm.c,v 1.152 2001/01/11 18:59:32 roberto Exp roberto $
3** Lua virtual machine 3** Lua virtual machine
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -360,10 +360,6 @@ StkId luaV_execute (lua_State *L, const Closure *cl, StkId base) {
360 if (linehook) 360 if (linehook)
361 traceexec(L, base, top, linehook); 361 traceexec(L, base, top, linehook);
362 switch (GET_OPCODE(i)) { 362 switch (GET_OPCODE(i)) {
363 case OP_END: {
364 L->top = top;
365 return top;
366 }
367 case OP_RETURN: { 363 case OP_RETURN: {
368 L->top = top; 364 L->top = top;
369 return base+GETARG_U(i); 365 return base+GETARG_U(i);