aboutsummaryrefslogtreecommitdiff
path: root/lapi.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2001-02-23 14:28:12 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2001-02-23 14:28:12 -0300
commit35023355f21d2c508e2614dc8383d7535dd3a80a (patch)
tree060e939e2e89f30d7b4c35467692a082e59fc684 /lapi.c
parent39b79783297bee79db9853b63d199e120a009a8f (diff)
downloadlua-35023355f21d2c508e2614dc8383d7535dd3a80a.tar.gz
lua-35023355f21d2c508e2614dc8383d7535dd3a80a.tar.bz2
lua-35023355f21d2c508e2614dc8383d7535dd3a80a.zip
details for wchar
Diffstat (limited to 'lapi.c')
-rw-r--r--lapi.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lapi.c b/lapi.c
index ab8c0ae6..d213ac9b 100644
--- a/lapi.c
+++ b/lapi.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lapi.c,v 1.132 2001/02/22 18:59:59 roberto Exp roberto $ 2** $Id: lapi.c,v 1.133 2001/02/23 17:17:25 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*/
@@ -22,8 +22,8 @@
22#include "lvm.h" 22#include "lvm.h"
23 23
24 24
25const l_char lua_ident[] = l_s("$Lua: ") l_s(LUA_VERSION) l_s(" ") 25const l_char lua_ident[] = l_s("$Lua: ") LUA_VERSION l_s(" ")
26 l_s(LUA_COPYRIGHT) l_s(" $\n") l_s("$Authors: ") l_s(LUA_AUTHORS) l_s(" $"); 26 LUA_COPYRIGHT l_s(" $\n") l_s("$Authors: ") LUA_AUTHORS l_s(" $");
27 27
28 28
29 29