From 68225a261f7b22ae56d08d91aaac1f3243e3d320 Mon Sep 17 00:00:00 2001 From: Birunthan Mohanathas Date: Thu, 3 Feb 2011 16:07:34 +0000 Subject: [PATCH] Some additional changes. --- Library/lua/lua/luaconf.h | 8 ++++---- Version.h | 10 +++++----- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Library/lua/lua/luaconf.h b/Library/lua/lua/luaconf.h index 546015ba..45789958 100644 --- a/Library/lua/lua/luaconf.h +++ b/Library/lua/lua/luaconf.h @@ -333,14 +333,14 @@ ** CHANGE it to undefined as soon as your programs use only '...' to ** access vararg parameters (instead of the old 'arg' table). */ -#define LUA_COMPAT_VARARG +#undef LUA_COMPAT_VARARG /* @@ LUA_COMPAT_MOD controls compatibility with old math.mod function. ** CHANGE it to undefined as soon as your programs use 'math.fmod' or ** the new '%' operator instead of 'math.mod'. */ -#define LUA_COMPAT_MOD +#undef LUA_COMPAT_MOD /* @@ LUA_COMPAT_LSTR controls compatibility with old long string nesting @@ -355,7 +355,7 @@ ** CHANGE it to undefined as soon as you rename 'string.gfind' to ** 'string.gmatch'. */ -#define LUA_COMPAT_GFIND +#undef LUA_COMPAT_GFIND /* @@ LUA_COMPAT_OPENLIB controls compatibility with old 'luaL_openlib' @@ -363,7 +363,7 @@ ** CHANGE it to undefined as soon as you replace to 'luaL_register' ** your uses of 'luaL_openlib' */ -#define LUA_COMPAT_OPENLIB +#undef LUA_COMPAT_OPENLIB diff --git a/Version.h b/Version.h index 8b96a395..82f9cd23 100644 --- a/Version.h +++ b/Version.h @@ -1,13 +1,13 @@ #pragma once #define MAKE_VER(major, minor1, minor2) major * 1000000 + minor1 * 1000 + minor2 -#define FILEVER 1,4,0,733 -#define PRODUCTVER 1,4,0,733 -#define STRFILEVER "1.4.0.733" -#define STRPRODUCTVER "1.4.0.733" +#define FILEVER 1,4,0,734 +#define PRODUCTVER 1,4,0,734 +#define STRFILEVER "1.4.0.734" +#define STRPRODUCTVER "1.4.0.734" #define APPVERSION L"1.4.0" #define RAINMETER_VERSION MAKE_VER(1, 4, 0) -const int revision_number = 733; +const int revision_number = 734; const bool revision_beta = true;