diff options
-rw-r--r-- | src/lfs.c | 7 |
1 files changed, 2 insertions, 5 deletions
@@ -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 | ||