aboutsummaryrefslogtreecommitdiff
path: root/lbuiltin.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2000-05-26 16:17:57 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2000-05-26 16:17:57 -0300
commit8e617985fab860fcd045f6f345ef47b159446d3b (patch)
treeb4b094aae7e962ea6e4a8f68c8f5dd31f97d4fdf /lbuiltin.h
parentc39345fba361257bc426cd042a39691a0d68d68a (diff)
downloadlua-8e617985fab860fcd045f6f345ef47b159446d3b.tar.gz
lua-8e617985fab860fcd045f6f345ef47b159446d3b.tar.bz2
lua-8e617985fab860fcd045f6f345ef47b159446d3b.zip
functions `for...' and `raw...' are obsolete now
Diffstat (limited to 'lbuiltin.h')
-rw-r--r--lbuiltin.h8
1 files changed, 3 insertions, 5 deletions
diff --git a/lbuiltin.h b/lbuiltin.h
index 2bf34105..213f3f3d 100644
--- a/lbuiltin.h
+++ b/lbuiltin.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lbuiltin.h,v 1.7 2000/04/17 19:23:12 roberto Exp roberto $ 2** $Id: lbuiltin.h,v 1.8 2000/05/08 19:32:53 roberto Exp roberto $
3** Built-in functions 3** Built-in functions
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -18,8 +18,6 @@ void luaB_copytagmethods (lua_State *L);
18void luaB_dofile (lua_State *L); 18void luaB_dofile (lua_State *L);
19void luaB_dostring (lua_State *L); 19void luaB_dostring (lua_State *L);
20void luaB_error (lua_State *L); 20void luaB_error (lua_State *L);
21void luaB_foreach (lua_State *L);
22void luaB_foreachi (lua_State *L);
23void luaB_getglobal (lua_State *L); 21void luaB_getglobal (lua_State *L);
24void luaB_getn (lua_State *L); 22void luaB_getn (lua_State *L);
25void luaB_gettagmethod (lua_State *L); 23void luaB_gettagmethod (lua_State *L);
@@ -27,8 +25,8 @@ void luaB_globals (lua_State *L);
27void luaB_newtag (lua_State *L); 25void luaB_newtag (lua_State *L);
28void luaB_next (lua_State *L); 26void luaB_next (lua_State *L);
29void luaB_print (lua_State *L); 27void luaB_print (lua_State *L);
30void luaB_rawgettable (lua_State *L); 28void luaB_rawget (lua_State *L);
31void luaB_rawsettable (lua_State *L); 29void luaB_rawset (lua_State *L);
32void luaB_setglobal (lua_State *L); 30void luaB_setglobal (lua_State *L);
33void luaB_settag (lua_State *L); 31void luaB_settag (lua_State *L);
34void luaB_settagmethod (lua_State *L); 32void luaB_settagmethod (lua_State *L);