diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2001-02-23 14:28:12 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2001-02-23 14:28:12 -0300 |
commit | 35023355f21d2c508e2614dc8383d7535dd3a80a (patch) | |
tree | 060e939e2e89f30d7b4c35467692a082e59fc684 /lua.c | |
parent | 39b79783297bee79db9853b63d199e120a009a8f (diff) | |
download | lua-35023355f21d2c508e2614dc8383d7535dd3a80a.tar.gz lua-35023355f21d2c508e2614dc8383d7535dd3a80a.tar.bz2 lua-35023355f21d2c508e2614dc8383d7535dd3a80a.zip |
details for wchar
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.61 2001/02/20 18:15:33 roberto Exp roberto $ | 2 | ** $Id: lua.c,v 1.62 2001/02/23 17:17:25 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 | */ |
@@ -118,7 +118,7 @@ static void print_message (void) { | |||
118 | 118 | ||
119 | 119 | ||
120 | static void print_version (void) { | 120 | static void print_version (void) { |
121 | printf(l_s("%.80s %.80s\n"), l_s(LUA_VERSION), l_s(LUA_COPYRIGHT)); | 121 | printf(l_s("%.80s %.80s\n"), LUA_VERSION, LUA_COPYRIGHT); |
122 | } | 122 | } |
123 | 123 | ||
124 | 124 | ||