summaryrefslogtreecommitdiff
path: root/lua.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2011-07-02 13:00:15 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2011-07-02 13:00:15 -0300
commitad1a54b5c0b045365326923ee4f3574773abefff (patch)
tree03174cf297e71cc58430691d15e9bc1637cb11e9 /lua.h
parent88c29c0cd57b1d43dc69aa71d44045de3b4823ef (diff)
downloadlua-ad1a54b5c0b045365326923ee4f3574773abefff.tar.gz
lua-ad1a54b5c0b045365326923ee4f3574773abefff.tar.bz2
lua-ad1a54b5c0b045365326923ee4f3574773abefff.zip
reordering of some defines (more logical grouping)
Diffstat (limited to 'lua.h')
-rw-r--r--lua.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lua.h b/lua.h
index d26df185..2cd70ae7 100644
--- a/lua.h
+++ b/lua.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lua.h,v 1.276 2010/10/26 19:32:19 roberto Exp roberto $ 2** $Id: lua.h,v 1.277 2011/04/18 14:15:48 roberto Exp roberto $
3** Lua - A Scripting Language 3** Lua - A Scripting Language
4** Lua.org, PUC-Rio, Brazil (http://www.lua.org) 4** Lua.org, PUC-Rio, Brazil (http://www.lua.org)
5** See Copyright Notice at the end of this file 5** See Copyright Notice at the end of this file
@@ -18,11 +18,11 @@
18 18
19#define LUA_VERSION_MAJOR "5" 19#define LUA_VERSION_MAJOR "5"
20#define LUA_VERSION_MINOR "2" 20#define LUA_VERSION_MINOR "2"
21#define LUA_VERSION_NUM 502
21#define LUA_VERSION_RELEASE "0" 22#define LUA_VERSION_RELEASE "0"
22 23
23#define LUA_VERSION "Lua " LUA_VERSION_MAJOR "." LUA_VERSION_MINOR 24#define LUA_VERSION "Lua " LUA_VERSION_MAJOR "." LUA_VERSION_MINOR
24#define LUA_RELEASE LUA_VERSION "." LUA_VERSION_RELEASE 25#define LUA_RELEASE LUA_VERSION "." LUA_VERSION_RELEASE
25#define LUA_VERSION_NUM 502
26#define LUA_COPYRIGHT LUA_RELEASE " Copyright (C) 1994-2011 Lua.org, PUC-Rio" 26#define LUA_COPYRIGHT LUA_RELEASE " Copyright (C) 1994-2011 Lua.org, PUC-Rio"
27#define LUA_AUTHORS "R. Ierusalimschy, L. H. de Figueiredo, W. Celes" 27#define LUA_AUTHORS "R. Ierusalimschy, L. H. de Figueiredo, W. Celes"
28 28