summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2017-06-09 16:16:41 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2017-06-09 16:16:41 -0300
commitd13a3fb070fd0ec9ec3b85f88e0fcd914aa666d3 (patch)
tree7f1d2b32e7a4ecdea4e6d1b7833b2fce3c34f3cf
parentb6f87491afe32140563fe3c546b8812c28a63410 (diff)
downloadlua-d13a3fb070fd0ec9ec3b85f88e0fcd914aa666d3.tar.gz
lua-d13a3fb070fd0ec9ec3b85f88e0fcd914aa666d3.tar.bz2
lua-d13a3fb070fd0ec9ec3b85f88e0fcd914aa666d3.zip
detail
(removed empty spaces at the end of lines)
-rw-r--r--lvm.c4
-rw-r--r--lvm.h4
2 files changed, 4 insertions, 4 deletions
diff --git a/lvm.c b/lvm.c
index 7c15e899..8533af63 100644
--- a/lvm.c
+++ b/lvm.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lvm.c,v 2.285 2017/05/23 12:50:11 roberto Exp roberto $ 2** $Id: lvm.c,v 2.286 2017/06/01 20:22:33 roberto Exp roberto $
3** Lua virtual machine 3** Lua virtual machine
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -1439,7 +1439,7 @@ void luaV_execute (lua_State *L) {
1439 } 1439 }
1440 vmcase(OP_VARARG) { 1440 vmcase(OP_VARARG) {
1441 int b = GETARG_B(i) - 1; /* required results */ 1441 int b = GETARG_B(i) - 1; /* required results */
1442 StkId vtab = base + cl->p->numparams - 1; /* vararg table */ 1442 StkId vtab = base + cl->p->numparams - 1; /* vararg table */
1443 Protect(luaT_getvarargs(L, vtab, ra, b)); 1443 Protect(luaT_getvarargs(L, vtab, ra, b));
1444 vmbreak; 1444 vmbreak;
1445 } 1445 }
diff --git a/lvm.h b/lvm.h
index d682a7a2..3cf1f869 100644
--- a/lvm.h
+++ b/lvm.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lvm.h,v 2.42 2017/05/11 18:57:46 roberto Exp roberto $ 2** $Id: lvm.h,v 2.43 2017/06/01 20:23:27 roberto Exp roberto $
3** Lua virtual machine 3** Lua virtual machine
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -76,7 +76,7 @@
76 76
77/* 77/*
78** Finish a fast set operation (when fast get succeeds). In that case, 78** Finish a fast set operation (when fast get succeeds). In that case,
79** 'slot' points to the place to put the value. 79** 'slot' points to the place to put the value.
80*/ 80*/
81#define luaV_finishfastset(L,t,slot,v) \ 81#define luaV_finishfastset(L,t,slot,v) \
82 { setobj2t(L, cast(TValue *,slot), v); \ 82 { setobj2t(L, cast(TValue *,slot), v); \