aboutsummaryrefslogtreecommitdiff
path: root/src/lfs.c
diff options
context:
space:
mode:
authorcarregal <carregal>2009-02-03 22:05:48 +0000
committercarregal <carregal>2009-02-03 22:05:48 +0000
commit657faad984e378751bc35fabc6ee166e3bcd1493 (patch)
treea63a76844fd09f3dcbe8fee9cdc3755e4e3398ca /src/lfs.c
parent16961a6c2c6fb424e79195f65ae4387cd8005053 (diff)
downloadluafilesystem-1_4_2.tar.gz
luafilesystem-1_4_2.tar.bz2
luafilesystem-1_4_2.zip
Packaging version 1.4.2v1_4_2
Diffstat (limited to 'src/lfs.c')
-rw-r--r--src/lfs.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lfs.c b/src/lfs.c
index bb10e73..a3bce1d 100644
--- a/src/lfs.c
+++ b/src/lfs.c
@@ -16,7 +16,7 @@
16** lfs.touch (filepath [, atime [, mtime]]) 16** lfs.touch (filepath [, atime [, mtime]])
17** lfs.unlock (fh) 17** lfs.unlock (fh)
18** 18**
19** $Id: lfs.c,v 1.55 2008/12/15 16:13:55 mascarenhas Exp $ 19** $Id: lfs.c,v 1.56 2009/02/03 22:05:48 carregal Exp $
20*/ 20*/
21 21
22#ifndef _WIN32 22#ifndef _WIN32
@@ -671,7 +671,7 @@ static void set_info (lua_State *L) {
671 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"); 671 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");
672 lua_settable (L, -3); 672 lua_settable (L, -3);
673 lua_pushliteral (L, "_VERSION"); 673 lua_pushliteral (L, "_VERSION");
674 lua_pushliteral (L, "LuaFileSystem 1.4.1"); 674 lua_pushliteral (L, "LuaFileSystem 1.4.2");
675 lua_settable (L, -3); 675 lua_settable (L, -3);
676} 676}
677 677