aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authortomas <tomas>2005-06-21 11:46:13 +0000
committertomas <tomas>2005-06-21 11:46:13 +0000
commit3479c6d9354a0574364ea05b3d3b56cc095e5d39 (patch)
tree9a0f1833e1267993b1ff6aeccad95cb0397831a5 /src
parent26d207052c41bc95366dad263dde77c7a5cb17e1 (diff)
downloadluafilesystem-3479c6d9354a0574364ea05b3d3b56cc095e5d39.tar.gz
luafilesystem-3479c6d9354a0574364ea05b3d3b56cc095e5d39.tar.bz2
luafilesystem-3479c6d9354a0574364ea05b3d3b56cc095e5d39.zip
Removing _NAME field.
Diffstat (limited to 'src')
-rw-r--r--src/lfs.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/lfs.c b/src/lfs.c
index 54df4ce..234194d 100644
--- a/src/lfs.c
+++ b/src/lfs.c
@@ -11,7 +11,7 @@
11** lfs.touch (filepath [, atime [, mtime]]) 11** lfs.touch (filepath [, atime [, mtime]])
12** lfs.unlock (fh) 12** lfs.unlock (fh)
13** 13**
14** $Id: lfs.c,v 1.23 2005/06/09 16:22:37 tuler Exp $ 14** $Id: lfs.c,v 1.24 2005/06/21 11:46:13 tomas Exp $
15*/ 15*/
16 16
17#include <errno.h> 17#include <errno.h>
@@ -521,11 +521,8 @@ static void set_info (lua_State *L) {
521 lua_pushliteral (L, "_DESCRIPTION"); 521 lua_pushliteral (L, "_DESCRIPTION");
522 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"); 522 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");
523 lua_settable (L, -3); 523 lua_settable (L, -3);
524 lua_pushliteral (L, "_NAME");
525 lua_pushliteral (L, "LuaFileSystem");
526 lua_settable (L, -3);
527 lua_pushliteral (L, "_VERSION"); 524 lua_pushliteral (L, "_VERSION");
528 lua_pushliteral (L, "1.2"); 525 lua_pushliteral (L, "LuaFileSystem 1.2");
529 lua_settable (L, -3); 526 lua_settable (L, -3);
530} 527}
531 528