diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2001-10-11 18:40:56 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2001-10-11 18:40:56 -0300 |
commit | babaa96eab3a5419889b393424db14377f581a69 (patch) | |
tree | fbdbb37bec18d80d778f2bbb399cc0ffc292fb26 /lapi.c | |
parent | 15462edb0ff86bf1904011b29635420451cab2c5 (diff) | |
download | lua-babaa96eab3a5419889b393424db14377f581a69.tar.gz lua-babaa96eab3a5419889b393424db14377f581a69.tar.bz2 lua-babaa96eab3a5419889b393424db14377f581a69.zip |
URL in indentification
Diffstat (limited to 'lapi.c')
-rw-r--r-- | lapi.c | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -23,8 +23,10 @@ | |||
23 | #include "lvm.h" | 23 | #include "lvm.h" |
24 | 24 | ||
25 | 25 | ||
26 | const l_char lua_ident[] = l_s("$Lua: ") l_s(LUA_VERSION) l_s(" ") | 26 | const l_char lua_ident[] = |
27 | l_s(LUA_COPYRIGHT) l_s(" $\n") l_s("$Authors: ") l_s(LUA_AUTHORS) l_s(" $"); | 27 | l_s("$Lua: ") l_s(LUA_VERSION) l_s(" ") l_s(LUA_COPYRIGHT) l_s(" $\n") |
28 | l_s("$Authors: ") l_s(LUA_AUTHORS) l_s(" $\n") | ||
29 | l_s("$URL: www.lua.org $\n"); | ||
28 | 30 | ||
29 | 31 | ||
30 | 32 | ||