aboutsummaryrefslogtreecommitdiff
path: root/lcode.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2014-10-30 16:53:28 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2014-10-30 16:53:28 -0200
commit4542fb9f78ff72c6bc72be76385f9710ffee867a (patch)
treed61e42e9130445fda7fe8968a6bf17ffc16f5364 /lcode.c
parent80e817719de40823622f0c91288d129293373875 (diff)
downloadlua-4542fb9f78ff72c6bc72be76385f9710ffee867a.tar.gz
lua-4542fb9f78ff72c6bc72be76385f9710ffee867a.tar.bz2
lua-4542fb9f78ff72c6bc72be76385f9710ffee867a.zip
comments (a few extra quotes around identifiers)
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 00fd1646..2e7af2f7 100644
--- a/lcode.c
+++ b/lcode.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lcode.c,v 2.92 2014/10/27 16:29:58 roberto Exp roberto $ 2** $Id: lcode.c,v 2.93 2014/10/28 17:27:41 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*/
@@ -589,7 +589,7 @@ int luaK_exp2RK (FuncState *fs, expdesc *e) {
589 } 589 }
590 case VK: { 590 case VK: {
591 vk: 591 vk:
592 if (e->u.info <= MAXINDEXRK) /* constant fits in argC? */ 592 if (e->u.info <= MAXINDEXRK) /* constant fits in 'argC'? */
593 return RKASK(e->u.info); 593 return RKASK(e->u.info);
594 else break; 594 else break;
595 } 595 }