diff options
| author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2010-04-19 15:52:15 -0300 |
|---|---|---|
| committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2010-04-19 15:52:15 -0300 |
| commit | 376e939ef62548ac64ab8f7b62051acd1ca452e3 (patch) | |
| tree | 502287156288d118bed01cae8df3a7fbad04bf64 | |
| parent | 9d28e2b3e5bb7efe02358e2bbb730d732af69edf (diff) | |
| download | lua-376e939ef62548ac64ab8f7b62051acd1ca452e3.tar.gz lua-376e939ef62548ac64ab8f7b62051acd1ca452e3.tar.bz2 lua-376e939ef62548ac64ab8f7b62051acd1ca452e3.zip | |
missing parentheses around 'luaL_pushresultsize' declaration
| -rw-r--r-- | lauxlib.h | 4 |
1 files changed, 2 insertions, 2 deletions
| @@ -1,5 +1,5 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** $Id: lauxlib.h,v 1.102 2010/04/09 16:14:46 roberto Exp roberto $ | 2 | ** $Id: lauxlib.h,v 1.103 2010/04/14 15:14:21 roberto Exp roberto $ |
| 3 | ** Auxiliary functions for building Lua libraries | 3 | ** Auxiliary functions for building Lua libraries |
| 4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
| 5 | */ | 5 | */ |
| @@ -140,7 +140,7 @@ LUALIB_API void (luaL_addlstring) (luaL_Buffer *B, const char *s, size_t l); | |||
| 140 | LUALIB_API void (luaL_addstring) (luaL_Buffer *B, const char *s); | 140 | LUALIB_API void (luaL_addstring) (luaL_Buffer *B, const char *s); |
| 141 | LUALIB_API void (luaL_addvalue) (luaL_Buffer *B); | 141 | LUALIB_API void (luaL_addvalue) (luaL_Buffer *B); |
| 142 | LUALIB_API void (luaL_pushresult) (luaL_Buffer *B); | 142 | LUALIB_API void (luaL_pushresult) (luaL_Buffer *B); |
| 143 | LUALIB_API void luaL_pushresultsize (luaL_Buffer *B, size_t sz); | 143 | LUALIB_API void (luaL_pushresultsize) (luaL_Buffer *B, size_t sz); |
| 144 | LUALIB_API char *(luaL_buffinitsize) (lua_State *L, luaL_Buffer *B, size_t sz); | 144 | LUALIB_API char *(luaL_buffinitsize) (lua_State *L, luaL_Buffer *B, size_t sz); |
| 145 | 145 | ||
| 146 | #define luaL_prepbuffer(B) luaL_prepbuffsize(B, LUAL_BUFFERSIZE) | 146 | #define luaL_prepbuffer(B) luaL_prepbuffsize(B, LUAL_BUFFERSIZE) |
