summaryrefslogtreecommitdiff
path: root/liolib.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2011-01-26 14:30:02 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2011-01-26 14:30:02 -0200
commitc4ea0c3b29252bcafeadf2f69532bdb67ab20bb9 (patch)
tree06ed5143f5724be72981ad6303d24c7f09e1cb46 /liolib.c
parent7106c491dddbfc7b9986c3c91214acd56b066d7f (diff)
downloadlua-c4ea0c3b29252bcafeadf2f69532bdb67ab20bb9.tar.gz
lua-c4ea0c3b29252bcafeadf2f69532bdb67ab20bb9.tar.bz2
lua-c4ea0c3b29252bcafeadf2f69532bdb67ab20bb9.zip
detail (cleaning trailing spaces)
Diffstat (limited to 'liolib.c')
-rw-r--r--liolib.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/liolib.c b/liolib.c
index 4b15fd35..1fa05477 100644
--- a/liolib.c
+++ b/liolib.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: liolib.c,v 2.94 2010/11/09 16:57:49 roberto Exp roberto $ 2** $Id: liolib.c,v 2.95 2010/11/10 18:05:36 roberto Exp roberto $
3** Standard I/O (and system) library 3** Standard I/O (and system) library
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -517,7 +517,7 @@ static int io_write (lua_State *L) {
517 517
518 518
519static int f_write (lua_State *L) { 519static int f_write (lua_State *L) {
520 FILE * f = tofile(L); 520 FILE * f = tofile(L);
521 lua_pushvalue(L, 1); /* push file at the stack top (to be returned) */ 521 lua_pushvalue(L, 1); /* push file at the stack top (to be returned) */
522 return g_write(L, f, 2); 522 return g_write(L, f, 2);
523} 523}