aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lcode.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lcode.c b/lcode.c
index 1331a54e..82bcdcbb 100644
--- a/lcode.c
+++ b/lcode.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lcode.c,v 2.126 2017/09/28 16:53:29 roberto Exp roberto $ 2** $Id: lcode.c,v 2.127 2017/10/01 19:13:43 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*/
@@ -1057,7 +1057,7 @@ static void codenot (FuncState *fs, expdesc *e) {
1057** Check whether expression 'e' is a small literal string 1057** Check whether expression 'e' is a small literal string
1058*/ 1058*/
1059static int isKstr (FuncState *fs, expdesc *e) { 1059static int isKstr (FuncState *fs, expdesc *e) {
1060 return (e->k == VK && !hasjumps(e) && e->u.info <= MAXARG_C && 1060 return (e->k == VK && !hasjumps(e) && e->u.info <= MAXARG_B &&
1061 ttisshrstring(&fs->f->k[e->u.info])); 1061 ttisshrstring(&fs->f->k[e->u.info]));
1062} 1062}
1063 1063