|
|
@ -1,5 +1,5 @@ |
|
|
|
/*
|
|
|
|
** $Id: lauxlib.c,v 1.260 2014/03/12 20:57:40 roberto Exp roberto $ |
|
|
|
** $Id: lauxlib.c,v 1.261 2014/04/01 18:55:06 roberto Exp roberto $ |
|
|
|
** Auxiliary functions for building Lua libraries |
|
|
|
** See Copyright Notice in lua.h |
|
|
|
*/ |
|
|
@ -966,12 +966,12 @@ LUALIB_API lua_State *luaL_newstate (void) { |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
LUALIB_API void luaL_checkversion_ (lua_State *L, int ver, size_t sz) { |
|
|
|
LUALIB_API void luaL_checkversion_ (lua_State *L, lua_Number ver, size_t sz) { |
|
|
|
const lua_Number *v = lua_version(L); |
|
|
|
if (v != lua_version(NULL)) |
|
|
|
luaL_error(L, "multiple Lua VMs detected"); |
|
|
|
else if (*v != ver) |
|
|
|
luaL_error(L, "version mismatch: app. needs %d, Lua core provides %f", |
|
|
|
luaL_error(L, "version mismatch: app. needs %f, Lua core provides %f", |
|
|
|
ver, *v); |
|
|
|
/* check numeric types */ |
|
|
|
if (sz != LUAL_NUMSIZES) |
|
|
|