diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2006-06-02 12:34:00 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2006-06-02 12:34:00 -0300 |
commit | 475b0ecbf18be08ee824c4958ac33b7682891bbf (patch) | |
tree | 854e501480d5bc09f1c384177a399d09810de263 /lua.c | |
parent | 414359b2f103f94902a59926a44eab8b46296e0d (diff) | |
download | lua-475b0ecbf18be08ee824c4958ac33b7682891bbf.tar.gz lua-475b0ecbf18be08ee824c4958ac33b7682891bbf.tar.bz2 lua-475b0ecbf18be08ee824c4958ac33b7682891bbf.zip |
new macro LUA_RELEASE
Diffstat (limited to 'lua.c')
-rw-r--r-- | lua.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 | ||
109 | static void print_version (void) { | 109 | static 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 | ||