summaryrefslogtreecommitdiff
path: root/lapi.c
diff options
context:
space:
mode:
Diffstat (limited to 'lapi.c')
-rw-r--r--lapi.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lapi.c b/lapi.c
index 214ac283..ec239962 100644
--- a/lapi.c
+++ b/lapi.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lapi.c,v 2.221 2014/06/26 17:25:11 roberto Exp roberto $ 2** $Id: lapi.c,v 2.222 2014/06/26 18:28:24 roberto Exp roberto $
3** Lua API 3** Lua API
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -183,7 +183,7 @@ LUA_API void lua_settop (lua_State *L, int idx) {
183 183
184/* 184/*
185** Reverse the stack segment from 'from' to 'to' 185** Reverse the stack segment from 'from' to 'to'
186** (auxiliar to 'lua_rotate') 186** (auxiliary to 'lua_rotate')
187*/ 187*/
188static void reverse (lua_State *L, StkId from, StkId to) { 188static void reverse (lua_State *L, StkId from, StkId to) {
189 for (; from < to; from++, to--) { 189 for (; from < to; from++, to--) {