aboutsummaryrefslogtreecommitdiff
path: root/lua.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1998-06-05 19:17:44 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1998-06-05 19:17:44 -0300
commit02134b4a8791aad79b21d75fb8cef6a3a908a767 (patch)
treee7acef61eda957830c2f6d2841b48c5de801dcc8 /lua.h
parentbdb1db4d373b1379d48e60666a00106d50213d6a (diff)
downloadlua-02134b4a8791aad79b21d75fb8cef6a3a908a767.tar.gz
lua-02134b4a8791aad79b21d75fb8cef6a3a908a767.tar.bz2
lua-02134b4a8791aad79b21d75fb8cef6a3a908a767.zip
name: lua_pushCclosure -> lua_pushcclosure.
Diffstat (limited to 'lua.h')
-rw-r--r--lua.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/lua.h b/lua.h
index b200c20b..73eede89 100644
--- a/lua.h
+++ b/lua.h
@@ -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);
104void lua_pushnumber (double n); 104void lua_pushnumber (double n);
105void lua_pushlstring (char *s, long len); 105void lua_pushlstring (char *s, long len);
106void lua_pushstring (char *s); 106void lua_pushstring (char *s);
107void lua_pushCclosure (lua_CFunction fn, int n); 107void lua_pushcclosure (lua_CFunction fn, int n);
108void lua_pushusertag (void *u, int tag); 108void lua_pushusertag (void *u, int tag);
109void lua_pushobject (lua_Object object); 109void 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
153void (lua_pushcfunction) (lua_CFunction f); 153void (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
156int (lua_clonetag) (int t); 156int (lua_clonetag) (int t);
157#define lua_clonetag(t) lua_copytagmethods(lua_newtag(), (t)) 157#define lua_clonetag(t) lua_copytagmethods(lua_newtag(), (t))