summaryrefslogtreecommitdiff
path: root/lapi.c
diff options
context:
space:
mode:
Diffstat (limited to 'lapi.c')
-rw-r--r--lapi.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lapi.c b/lapi.c
index b82706fd..066f4152 100644
--- a/lapi.c
+++ b/lapi.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lapi.c,v 2.163 2012/05/23 15:42:27 roberto Exp roberto $ 2** $Id: lapi.c,v 2.164 2012/06/08 15:14:04 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*/
@@ -281,7 +281,7 @@ LUA_API int lua_rawequal (lua_State *L, int index1, int index2) {
281} 281}
282 282
283 283
284LUA_API void lua_arith (lua_State *L, int op) { 284LUA_API void lua_arith (lua_State *L, int op) {
285 StkId o1; /* 1st operand */ 285 StkId o1; /* 1st operand */
286 StkId o2; /* 2nd operand */ 286 StkId o2; /* 2nd operand */
287 lua_lock(L); 287 lua_lock(L);
@@ -1006,7 +1006,7 @@ LUA_API int lua_dump (lua_State *L, lua_Writer writer, void *data) {
1006} 1006}
1007 1007
1008 1008
1009LUA_API int lua_status (lua_State *L) { 1009LUA_API int lua_status (lua_State *L) {
1010 return L->status; 1010 return L->status;
1011} 1011}
1012 1012