summaryrefslogtreecommitdiff
path: root/lcode.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2016-12-22 11:08:50 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2016-12-22 11:08:50 -0200
commit2a235312f029cbd2b1eb79f158d4f74b3ffa1b85 (patch)
treeee359ba97c390d1d6709243ab7c92c1e8252617a /lcode.c
parent9903dd52a39fbe4531596b1266e226f01769de21 (diff)
downloadlua-github-2a235312f029cbd2b1eb79f158d4f74b3ffa1b85.tar.gz
detail (removing spaces at end of lines)
Diffstat (limited to 'lcode.c')
-rw-r--r--lcode.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lcode.c b/lcode.c
index 8bc85408..aca0256d 100644
--- a/lcode.c
+++ b/lcode.c
@@ -1,5 +1,5 @@
/*
-** $Id: lcode.c,v 2.110 2016/06/20 19:12:46 roberto Exp roberto $
+** $Id: lcode.c,v 2.111 2016/07/19 17:12:07 roberto Exp roberto $
** Code generator for Lua
** See Copyright Notice in lua.h
*/
@@ -86,7 +86,7 @@ void luaK_nil (FuncState *fs, int from, int n) {
/*
** Gets the destination address of a jump instruction. Used to traverse
** a list of jumps.
-*/
+*/
static int getjump (FuncState *fs, int pc) {
int offset = GETARG_sBx(fs->f->code[pc]);
if (offset == NO_JUMP) /* point to itself represents end of list */
@@ -754,7 +754,7 @@ void luaK_exp2val (FuncState *fs, expdesc *e) {
** (that is, it is either in a register or in 'k' with an index
** in the range of R/K indices).
** Returns R/K index.
-*/
+*/
int luaK_exp2RK (FuncState *fs, expdesc *e) {
luaK_exp2val(fs, e);
switch (e->k) { /* move constants to 'k' */