aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2007-08-07 13:53:40 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2007-08-07 13:53:40 -0300
commit72c2f756489e3dc88105ebd32058a9951847cb29 (patch)
tree8789cf9d4600ca4f8ad9ad628ab39fde02fef40f
parentec68ed66edf857123e54b090c28451530f974df1 (diff)
downloadlua-72c2f756489e3dc88105ebd32058a9951847cb29.tar.gz
lua-72c2f756489e3dc88105ebd32058a9951847cb29.tar.bz2
lua-72c2f756489e3dc88105ebd32058a9951847cb29.zip
detail (LUA_COPYRIGHT includes release number)
-rw-r--r--lapi.c4
-rw-r--r--lua.c4
-rw-r--r--lua.h4
3 files changed, 6 insertions, 6 deletions
diff --git a/lapi.c b/lapi.c
index 927eccca..50b738ce 100644
--- a/lapi.c
+++ b/lapi.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lapi.c,v 2.59 2007/02/07 14:28:00 roberto Exp roberto $ 2** $Id: lapi.c,v 2.60 2007/04/17 13:19:53 roberto Exp roberto $
3** Lua API 3** Lua API
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -32,7 +32,7 @@
32 32
33 33
34const char lua_ident[] = 34const char lua_ident[] =
35 "$LuaVersion: " LUA_RELEASE " " LUA_COPYRIGHT " $" 35 "$LuaVersion: " LUA_COPYRIGHT " $"
36 "$LuaAuthors: " LUA_AUTHORS " $"; 36 "$LuaAuthors: " LUA_AUTHORS " $";
37 37
38 38
diff --git a/lua.c b/lua.c
index 7d4f7b59..289ae87f 100644
--- a/lua.c
+++ b/lua.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lua.c,v 1.165 2007/04/26 20:39:38 roberto Exp roberto $ 2** $Id: lua.c,v 1.166 2007/06/22 15:33:54 roberto Exp roberto $
3** Lua stand-alone interpreter 3** Lua stand-alone interpreter
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -102,7 +102,7 @@ static int docall (lua_State *L, int narg, int clear) {
102 102
103 103
104static void print_version (void) { 104static void print_version (void) {
105 l_message(NULL, LUA_RELEASE " " LUA_COPYRIGHT); 105 l_message(NULL, LUA_COPYRIGHT);
106} 106}
107 107
108 108
diff --git a/lua.h b/lua.h
index 1c3341b6..48831e34 100644
--- a/lua.h
+++ b/lua.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lua.h,v 1.224 2007/02/07 17:54:52 roberto Exp roberto $ 2** $Id: lua.h,v 1.225 2007/04/17 13:19:53 roberto Exp roberto $
3** Lua - An Extensible Extension Language 3** Lua - An Extensible Extension 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
@@ -19,7 +19,7 @@
19#define LUA_VERSION "Lua 5.2" 19#define LUA_VERSION "Lua 5.2"
20#define LUA_RELEASE "Lua 5.2.0" 20#define LUA_RELEASE "Lua 5.2.0"
21#define LUA_VERSION_NUM 502 21#define LUA_VERSION_NUM 502
22#define LUA_COPYRIGHT "Copyright (C) 1994-2007 Lua.org, PUC-Rio" 22#define LUA_COPYRIGHT LUA_RELEASE " Copyright (C) 1994-2007 Lua.org, PUC-Rio"
23#define LUA_AUTHORS "R. Ierusalimschy, L. H. de Figueiredo, W. Celes" 23#define LUA_AUTHORS "R. Ierusalimschy, L. H. de Figueiredo, W. Celes"
24 24
25 25