aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authortomas <tomas>2006-06-08 18:06:18 +0000
committertomas <tomas>2006-06-08 18:06:18 +0000
commite10a4bc816c5401ec43a707d724db4730c8b9f4f (patch)
tree870fbbc64766af21ba79e0d4333f10827415f57e /src
parentc182bab5f9bfae9dfa2d44e3ca46783f52e1a915 (diff)
downloadluafilesystem-e10a4bc816c5401ec43a707d724db4730c8b9f4f.tar.gz
luafilesystem-e10a4bc816c5401ec43a707d724db4730c8b9f4f.tar.bz2
luafilesystem-e10a4bc816c5401ec43a707d724db4730c8b9f4f.zip
Correcting version number
Diffstat (limited to 'src')
-rw-r--r--src/lfs.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lfs.c b/src/lfs.c
index 068fd7f..43d5e9e 100644
--- a/src/lfs.c
+++ b/src/lfs.c
@@ -14,7 +14,7 @@
14** lfs.touch (filepath [, atime [, mtime]]) 14** lfs.touch (filepath [, atime [, mtime]])
15** lfs.unlock (fh) 15** lfs.unlock (fh)
16** 16**
17** $Id: lfs.c,v 1.33 2006/06/08 16:16:23 tomas Exp $ 17** $Id: lfs.c,v 1.34 2006/06/08 18:06:18 tomas Exp $
18*/ 18*/
19 19
20#include <errno.h> 20#include <errno.h>
@@ -564,7 +564,7 @@ static void set_info (lua_State *L) {
564 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"); 564 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");
565 lua_settable (L, -3); 565 lua_settable (L, -3);
566 lua_pushliteral (L, "_VERSION"); 566 lua_pushliteral (L, "_VERSION");
567 lua_pushliteral (L, "LuaFileSystem 1.2"); 567 lua_pushliteral (L, "LuaFileSystem 1.2.1");
568 lua_settable (L, -3); 568 lua_settable (L, -3);
569} 569}
570 570