diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1998-06-05 19:17:44 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1998-06-05 19:17:44 -0300 |
commit | 02134b4a8791aad79b21d75fb8cef6a3a908a767 (patch) | |
tree | e7acef61eda957830c2f6d2841b48c5de801dcc8 /lua.h | |
parent | bdb1db4d373b1379d48e60666a00106d50213d6a (diff) | |
download | lua-02134b4a8791aad79b21d75fb8cef6a3a908a767.tar.gz lua-02134b4a8791aad79b21d75fb8cef6a3a908a767.tar.bz2 lua-02134b4a8791aad79b21d75fb8cef6a3a908a767.zip |
name: lua_pushCclosure -> lua_pushcclosure.
Diffstat (limited to 'lua.h')
-rw-r--r-- | lua.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lua.h,v 1.18 1998/05/18 22:26:03 roberto Exp roberto $ | 2 | ** $Id: lua.h,v 1.19 1998/06/02 20:37:04 roberto Exp roberto $ |
3 | ** Lua - An Extensible Extension Language | 3 | ** Lua - An Extensible Extension Language |
4 | ** TeCGraf: Grupo de Tecnologia em Computacao Grafica, PUC-Rio, Brazil | 4 | ** TeCGraf: Grupo de Tecnologia em Computacao Grafica, PUC-Rio, Brazil |
5 | ** e-mail: lua@tecgraf.puc-rio.br | 5 | ** e-mail: lua@tecgraf.puc-rio.br |
@@ -104,7 +104,7 @@ void lua_pushnil (void); | |||
104 | void lua_pushnumber (double n); | 104 | void lua_pushnumber (double n); |
105 | void lua_pushlstring (char *s, long len); | 105 | void lua_pushlstring (char *s, long len); |
106 | void lua_pushstring (char *s); | 106 | void lua_pushstring (char *s); |
107 | void lua_pushCclosure (lua_CFunction fn, int n); | 107 | void lua_pushcclosure (lua_CFunction fn, int n); |
108 | void lua_pushusertag (void *u, int tag); | 108 | void lua_pushusertag (void *u, int tag); |
109 | void lua_pushobject (lua_Object object); | 109 | void lua_pushobject (lua_Object object); |
110 | 110 | ||
@@ -151,7 +151,7 @@ void (lua_pushuserdata) (void *u); | |||
151 | #define lua_pushuserdata(u) lua_pushusertag(u, 0) | 151 | #define lua_pushuserdata(u) lua_pushusertag(u, 0) |
152 | 152 | ||
153 | void (lua_pushcfunction) (lua_CFunction f); | 153 | void (lua_pushcfunction) (lua_CFunction f); |
154 | #define lua_pushcfunction(f) lua_pushCclosure(f, 0) | 154 | #define lua_pushcfunction(f) lua_pushcclosure(f, 0) |
155 | 155 | ||
156 | int (lua_clonetag) (int t); | 156 | int (lua_clonetag) (int t); |
157 | #define lua_clonetag(t) lua_copytagmethods(lua_newtag(), (t)) | 157 | #define lua_clonetag(t) lua_copytagmethods(lua_newtag(), (t)) |