aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcarregal <carregal>2007-10-05 02:06:58 +0000
committercarregal <carregal>2007-10-05 02:06:58 +0000
commit6756befeff95ae056484743dc04d026c959c8fa7 (patch)
treeaedca586d4fa3dc7ccd7161fe96839980248c2f7
parentaeca787ff3710cba50b1f4b76f75ba86f4c1fc66 (diff)
downloadluafilesystem-6756befeff95ae056484743dc04d026c959c8fa7.tar.gz
luafilesystem-6756befeff95ae056484743dc04d026c959c8fa7.tar.bz2
luafilesystem-6756befeff95ae056484743dc04d026c959c8fa7.zip
Changing version to LuaFileSystem 1.3.0 (work)
-rw-r--r--src/lfs.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lfs.c b/src/lfs.c
index e6cb583..e61f32f 100644
--- a/src/lfs.c
+++ b/src/lfs.c
@@ -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.40 2007/08/30 14:39:45 tomas Exp $ 18** $Id: lfs.c,v 1.41 2007/10/05 02:06:58 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"); 584 lua_pushliteral (L, "LuaFileSystem 1.3.0 (work)");
585 lua_settable (L, -3); 585 lua_settable (L, -3);
586} 586}
587 587