diff options
-rw-r--r-- | src/lfs.c | 15 |
1 files changed, 6 insertions, 9 deletions
@@ -861,15 +861,12 @@ static int link_info (lua_State *L) { | |||
861 | ** Assumes the table is on top of the stack. | 861 | ** Assumes the table is on top of the stack. |
862 | */ | 862 | */ |
863 | static void set_info (lua_State *L) { | 863 | static void set_info (lua_State *L) { |
864 | lua_pushliteral (L, "_COPYRIGHT"); | 864 | lua_pushliteral(L, "Copyright (C) 2003-2016 Kepler Project"); |
865 | lua_pushliteral (L, "Copyright (C) 2003-2012 Kepler Project"); | 865 | lua_setfield(L, -2, "_COPYRIGHT"); |
866 | lua_settable (L, -3); | 866 | lua_pushliteral(L, "LuaFileSystem is a Lua library developed to complement the set of functions related to file systems offered by the standard Lua distribution"); |
867 | lua_pushliteral (L, "_DESCRIPTION"); | 867 | lua_setfield(L, -2, "_DESCRIPTION"); |
868 | lua_pushliteral (L, "LuaFileSystem is a Lua library developed to complement the set of functions related to file systems offered by the standard Lua distribution"); | 868 | lua_pushliteral(L, "LuaFileSystem " LFS_VERSION); |
869 | lua_settable (L, -3); | 869 | lua_setfield(L, -2, "_VERSION"); |
870 | lua_pushliteral (L, "_VERSION"); | ||
871 | lua_pushliteral (L, "LuaFileSystem " LFS_VERSION); | ||
872 | lua_settable (L, -3); | ||
873 | } | 870 | } |
874 | 871 | ||
875 | 872 | ||