diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2017-11-23 17:29:04 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2017-11-23 17:29:04 -0200 |
commit | 599f1742c628db70ef84794b3b8b25fdef9e5004 (patch) | |
tree | 6221729270cb636861de393484c048b955a72726 /lcode.c | |
parent | 73abfde2ef16223b12cf04800f6e53bfc68ad356 (diff) | |
download | lua-599f1742c628db70ef84794b3b8b25fdef9e5004.tar.gz lua-599f1742c628db70ef84794b3b8b25fdef9e5004.tar.bz2 lua-599f1742c628db70ef84794b3b8b25fdef9e5004.zip |
detail (typo in comments)
Diffstat (limited to '')
-rw-r--r-- | lcode.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lcode.c,v 2.134 2017/11/22 18:41:20 roberto Exp roberto $ | 2 | ** $Id: lcode.c,v 2.135 2017/11/22 19:15:44 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 | */ |
@@ -1331,7 +1331,7 @@ static void codeeq (FuncState *fs, BinOpr opr, expdesc *e1, expdesc *e2) { | |||
1331 | 1331 | ||
1332 | 1332 | ||
1333 | /* | 1333 | /* |
1334 | ** Aplly prefix operation 'op' to expression 'e'. | 1334 | ** Apply prefix operation 'op' to expression 'e'. |
1335 | */ | 1335 | */ |
1336 | void luaK_prefix (FuncState *fs, UnOpr op, expdesc *e, int line) { | 1336 | void luaK_prefix (FuncState *fs, UnOpr op, expdesc *e, int line) { |
1337 | static const expdesc ef = {VKINT, {0}, NO_JUMP, NO_JUMP}; | 1337 | static const expdesc ef = {VKINT, {0}, NO_JUMP, NO_JUMP}; |