aboutsummaryrefslogtreecommitdiff
path: root/lcode.c
diff options
context:
space:
mode:
Diffstat (limited to 'lcode.c')
-rw-r--r--lcode.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lcode.c b/lcode.c
index 4bf0c8ef..40210fe1 100644
--- a/lcode.c
+++ b/lcode.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lcode.c,v 2.101 2015/04/29 18:24:11 roberto Exp roberto $ 2** $Id: lcode.c,v 2.102 2015/10/26 14:27:47 roberto Exp roberto $
3** Code generator for Lua 3** Code generator for Lua
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -816,7 +816,7 @@ static void codeexpval (FuncState *fs, OpCode op,
816 freeexp(fs, e1); 816 freeexp(fs, e1);
817 } 817 }
818 e1->u.info = luaK_codeABC(fs, op, 0, o1, o2); /* generate opcode */ 818 e1->u.info = luaK_codeABC(fs, op, 0, o1, o2); /* generate opcode */
819 e1->k = VRELOCABLE; /* all those operations are relocable */ 819 e1->k = VRELOCABLE; /* all those operations are relocatable */
820 luaK_fixline(fs, line); 820 luaK_fixline(fs, line);
821 } 821 }
822} 822}