aboutsummaryrefslogtreecommitdiff
path: root/lauxlib.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2003-01-17 13:28:09 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2003-01-17 13:28:09 -0200
commitc499442e5f19c0b99cc14fa009c46aefb7f69cb1 (patch)
tree2c63a502c2b0be689cfd6eae2d874abae9264db8 /lauxlib.h
parent9a5bab82ff6f11773866f9f7c38f69c98b19d2e8 (diff)
downloadlua-c499442e5f19c0b99cc14fa009c46aefb7f69cb1.tar.gz
lua-c499442e5f19c0b99cc14fa009c46aefb7f69cb1.tar.bz2
lua-c499442e5f19c0b99cc14fa009c46aefb7f69cb1.zip
compatibility macros must be available by default
Diffstat (limited to 'lauxlib.h')
-rw-r--r--lauxlib.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/lauxlib.h b/lauxlib.h
index 09fa2eec..25d8499c 100644
--- a/lauxlib.h
+++ b/lauxlib.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lauxlib.h,v 1.54 2002/09/16 19:49:45 roberto Exp roberto $ 2** $Id: lauxlib.h,v 1.55 2002/11/14 15:41:38 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*/
@@ -119,7 +119,7 @@ LUALIB_API int lua_dostring (lua_State *L, const char *str);
119LUALIB_API int lua_dobuffer (lua_State *L, const char *buff, size_t sz, 119LUALIB_API int lua_dobuffer (lua_State *L, const char *buff, size_t sz,
120 const char *n); 120 const char *n);
121 121
122/* 122
123#define luaL_check_lstr luaL_checklstring 123#define luaL_check_lstr luaL_checklstring
124#define luaL_opt_lstr luaL_optlstring 124#define luaL_opt_lstr luaL_optlstring
125#define luaL_check_number luaL_checknumber 125#define luaL_check_number luaL_checknumber
@@ -131,7 +131,7 @@ LUALIB_API int lua_dobuffer (lua_State *L, const char *buff, size_t sz,
131#define luaL_check_long luaL_checklong 131#define luaL_check_long luaL_checklong
132#define luaL_opt_int luaL_optint 132#define luaL_opt_int luaL_optint
133#define luaL_opt_long luaL_optlong 133#define luaL_opt_long luaL_optlong
134*/ 134
135 135
136#endif 136#endif
137 137