Some additional changes.

This commit is contained in:
Birunthan Mohanathas 2011-02-03 16:07:34 +00:00
parent a8aa2825a2
commit 68225a261f
2 changed files with 9 additions and 9 deletions

View File

@ -333,14 +333,14 @@
** CHANGE it to undefined as soon as your programs use only '...' to ** CHANGE it to undefined as soon as your programs use only '...' to
** access vararg parameters (instead of the old 'arg' table). ** 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. @@ LUA_COMPAT_MOD controls compatibility with old math.mod function.
** CHANGE it to undefined as soon as your programs use 'math.fmod' or ** CHANGE it to undefined as soon as your programs use 'math.fmod' or
** the new '%' operator instead of 'math.mod'. ** 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 @@ 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 ** CHANGE it to undefined as soon as you rename 'string.gfind' to
** 'string.gmatch'. ** 'string.gmatch'.
*/ */
#define LUA_COMPAT_GFIND #undef LUA_COMPAT_GFIND
/* /*
@@ LUA_COMPAT_OPENLIB controls compatibility with old 'luaL_openlib' @@ 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' ** CHANGE it to undefined as soon as you replace to 'luaL_register'
** your uses of 'luaL_openlib' ** your uses of 'luaL_openlib'
*/ */
#define LUA_COMPAT_OPENLIB #undef LUA_COMPAT_OPENLIB

View File

@ -1,13 +1,13 @@
#pragma once #pragma once
#define MAKE_VER(major, minor1, minor2) major * 1000000 + minor1 * 1000 + minor2 #define MAKE_VER(major, minor1, minor2) major * 1000000 + minor1 * 1000 + minor2
#define FILEVER 1,4,0,733 #define FILEVER 1,4,0,734
#define PRODUCTVER 1,4,0,733 #define PRODUCTVER 1,4,0,734
#define STRFILEVER "1.4.0.733" #define STRFILEVER "1.4.0.734"
#define STRPRODUCTVER "1.4.0.733" #define STRPRODUCTVER "1.4.0.734"
#define APPVERSION L"1.4.0" #define APPVERSION L"1.4.0"
#define RAINMETER_VERSION MAKE_VER(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; const bool revision_beta = true;