diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2012-08-14 15:12:34 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2012-08-14 15:12:34 -0300 |
commit | 53480f1163a65cc683b00663e2fa4883746ce7fb (patch) | |
tree | f415a4d7e76fa59d766b46511d426f0dc8c109c2 /lapi.c | |
parent | 233eac4d3a5ef126ce77a93fee52f5b4eb789969 (diff) | |
download | lua-53480f1163a65cc683b00663e2fa4883746ce7fb.tar.gz lua-53480f1163a65cc683b00663e2fa4883746ce7fb.tar.bz2 lua-53480f1163a65cc683b00663e2fa4883746ce7fb.zip |
details (remove of some extra spaces)
Diffstat (limited to 'lapi.c')
-rw-r--r-- | lapi.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 | ||
284 | LUA_API void lua_arith (lua_State *L, int op) { | 284 | LUA_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 | ||
1009 | LUA_API int lua_status (lua_State *L) { | 1009 | LUA_API int lua_status (lua_State *L) { |
1010 | return L->status; | 1010 | return L->status; |
1011 | } | 1011 | } |
1012 | 1012 | ||