diff options
author | carregal <carregal> | 2007-10-26 21:01:07 +0000 |
---|---|---|
committer | carregal <carregal> | 2007-10-26 21:01:07 +0000 |
commit | 8432017680987f4307e893065c97ba1329c79b83 (patch) | |
tree | ef2d91de2884fdfebb4552100f8ff13e7204eb4e | |
parent | d202dad4f13caf9cc104dc1fdcbdbdd2b607a91e (diff) | |
download | luafilesystem-8432017680987f4307e893065c97ba1329c79b83.tar.gz luafilesystem-8432017680987f4307e893065c97ba1329c79b83.tar.bz2 luafilesystem-8432017680987f4307e893065c97ba1329c79b83.zip |
Version 1.3.0 (final)
-rw-r--r-- | src/lfs.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -15,7 +15,7 @@ | |||
15 | ** lfs.touch (filepath [, atime [, mtime]]) | 15 | ** lfs.touch (filepath [, atime [, mtime]]) |
16 | ** lfs.unlock (fh) | 16 | ** lfs.unlock (fh) |
17 | ** | 17 | ** |
18 | ** $Id: lfs.c,v 1.41 2007/10/05 02:06:58 carregal Exp $ | 18 | ** $Id: lfs.c,v 1.42 2007/10/26 21:01:07 carregal Exp $ |
19 | */ | 19 | */ |
20 | 20 | ||
21 | #include <errno.h> | 21 | #include <errno.h> |
@@ -581,7 +581,7 @@ static void set_info (lua_State *L) { | |||
581 | 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"); | 581 | 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"); |
582 | lua_settable (L, -3); | 582 | lua_settable (L, -3); |
583 | lua_pushliteral (L, "_VERSION"); | 583 | lua_pushliteral (L, "_VERSION"); |
584 | lua_pushliteral (L, "LuaFileSystem 1.3.0 (work)"); | 584 | lua_pushliteral (L, "LuaFileSystem 1.3.0"); |
585 | lua_settable (L, -3); | 585 | lua_settable (L, -3); |
586 | } | 586 | } |
587 | 587 | ||