summaryrefslogtreecommitdiff
path: root/lua.h
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 /lua.h
parent39b79783297bee79db9853b63d199e120a009a8f (diff)
downloadlua-35023355f21d2c508e2614dc8383d7535dd3a80a.tar.gz
lua-35023355f21d2c508e2614dc8383d7535dd3a80a.tar.bz2
lua-35023355f21d2c508e2614dc8383d7535dd3a80a.zip
details for wchar
Diffstat (limited to 'lua.h')
-rw-r--r--lua.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/lua.h b/lua.h
index d786b025..4ab3a3cf 100644
--- a/lua.h
+++ b/lua.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lua.h,v 1.88 2001/02/22 17:15:18 roberto Exp roberto $ 2** $Id: lua.h,v 1.89 2001/02/23 17:17:25 roberto Exp roberto $
3** Lua - An Extensible Extension Language 3** Lua - An Extensible Extension Language
4** TeCGraf: Grupo de Tecnologia em Computacao Grafica, PUC-Rio, Brazil 4** TeCGraf: Grupo de Tecnologia em Computacao Grafica, PUC-Rio, Brazil
5** e-mail: lua@tecgraf.puc-rio.br 5** e-mail: lua@tecgraf.puc-rio.br
@@ -17,13 +17,13 @@
17 17
18 18
19 19
20#define LUA_VERSION "Lua 4.1 (work)" 20#define LUA_VERSION l_s("Lua 4.1 (work)")
21#define LUA_COPYRIGHT "Copyright (C) 1994-2000 TeCGraf, PUC-Rio" 21#define LUA_COPYRIGHT l_s("Copyright (C) 1994-2000 TeCGraf, PUC-Rio")
22#define LUA_AUTHORS "W. Celes, R. Ierusalimschy & L. H. de Figueiredo" 22#define LUA_AUTHORS l_s("W. Celes, R. Ierusalimschy & L. H. de Figueiredo")
23 23
24 24
25/* name of global variable with error handler */ 25/* name of global variable with error handler */
26#define LUA_ERRORMESSAGE "_ERRORMESSAGE" 26#define LUA_ERRORMESSAGE l_s("_ERRORMESSAGE")
27 27
28 28
29/* pre-defined references */ 29/* pre-defined references */