aboutsummaryrefslogtreecommitdiff
path: root/lua.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2006-06-02 12:34:00 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2006-06-02 12:34:00 -0300
commit475b0ecbf18be08ee824c4958ac33b7682891bbf (patch)
tree854e501480d5bc09f1c384177a399d09810de263 /lua.c
parent414359b2f103f94902a59926a44eab8b46296e0d (diff)
downloadlua-475b0ecbf18be08ee824c4958ac33b7682891bbf.tar.gz
lua-475b0ecbf18be08ee824c4958ac33b7682891bbf.tar.bz2
lua-475b0ecbf18be08ee824c4958ac33b7682891bbf.zip
new macro LUA_RELEASE
Diffstat (limited to 'lua.c')
-rw-r--r--lua.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lua.c b/lua.c
index 8cf83087..b8cf32ed 100644
--- a/lua.c
+++ b/lua.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lua.c,v 1.158 2006/04/10 18:27:23 roberto Exp roberto $ 2** $Id: lua.c,v 1.159 2006/05/24 14:16:39 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*/
@@ -107,7 +107,7 @@ static int docall (lua_State *L, int narg, int clear) {
107 107
108 108
109static void print_version (void) { 109static void print_version (void) {
110 l_message(NULL, LUA_VERSION " " LUA_COPYRIGHT); 110 l_message(NULL, LUA_RELEASE " " LUA_COPYRIGHT);
111} 111}
112 112
113 113