From 94c1b3a8eef6778cf995b906d77c0c066c6d55f3 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Thu, 12 Jan 2017 15:14:26 -0200 Subject: Handling of LUA_PATH/LUA_CPATH moved back to 'package' library to avoid incompatibilites with previous releases --- lualib.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'lualib.h') diff --git a/lualib.h b/lualib.h index ea073444..c01eb9c8 100644 --- a/lualib.h +++ b/lualib.h @@ -1,5 +1,5 @@ /* -** $Id: lualib.h,v 1.43 2011/12/08 12:11:37 roberto Exp roberto $ +** $Id: lualib.h,v 1.44 2014/02/06 17:32:33 roberto Exp roberto $ ** Lua standard libraries ** See Copyright Notice in lua.h */ @@ -11,6 +11,9 @@ #include "lua.h" +/* version suffix for environment variable names */ +#define LUA_VERSUFFIX "_" LUA_VERSION_MAJOR "_" LUA_VERSION_MINOR + LUAMOD_API int (luaopen_base) (lua_State *L); -- cgit v1.2.3-55-g6feb