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 eb5a2c82..e2808571 100644
--- a/lcode.c
+++ b/lcode.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lcode.c,v 2.153 2018/02/09 15:16:06 roberto Exp roberto $ 2** $Id: lcode.c,v 2.154 2018/02/15 15:34:29 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*/
@@ -31,7 +31,7 @@
31 31
32 32
33/* Maximum number of registers in a Lua function (must fit in 8 bits) */ 33/* Maximum number of registers in a Lua function (must fit in 8 bits) */
34#define MAXREGS 254 34#define MAXREGS 255
35 35
36 36
37#define hasjumps(e) ((e)->t != (e)->f) 37#define hasjumps(e) ((e)->t != (e)->f)