aboutsummaryrefslogtreecommitdiff
path: root/lvm.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2006-09-11 11:07:24 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2006-09-11 11:07:24 -0300
commita7c9e45c64a4bff9bdaf0d1177509bdd00fc53f7 (patch)
treef452f26770539293979a3dbd752ee0b38b849123 /lvm.c
parentcedd2092ebe402e0c6d600969ec926496a8a9d22 (diff)
downloadlua-a7c9e45c64a4bff9bdaf0d1177509bdd00fc53f7.tar.gz
lua-a7c9e45c64a4bff9bdaf0d1177509bdd00fc53f7.tar.bz2
lua-a7c9e45c64a4bff9bdaf0d1177509bdd00fc53f7.zip
avoid trailing white spaces
Diffstat (limited to 'lvm.c')
-rw-r--r--lvm.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lvm.c b/lvm.c
index db69e47e..98846bc9 100644
--- a/lvm.c
+++ b/lvm.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lvm.c,v 2.65 2006/07/14 16:22:24 roberto Exp roberto $ 2** $Id: lvm.c,v 2.66 2006/08/07 19:14:30 roberto Exp roberto $
3** Lua virtual machine 3** Lua virtual machine
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -127,7 +127,7 @@ void luaV_gettable (lua_State *L, const TValue *t, TValue *key, StkId val) {
127 callTMres(L, val, tm, t, key); 127 callTMres(L, val, tm, t, key);
128 return; 128 return;
129 } 129 }
130 t = tm; /* else repeat with `tm' */ 130 t = tm; /* else repeat with `tm' */
131 } 131 }
132 luaG_runerror(L, "loop in gettable"); 132 luaG_runerror(L, "loop in gettable");
133} 133}
@@ -154,7 +154,7 @@ void luaV_settable (lua_State *L, const TValue *t, TValue *key, StkId val) {
154 callTM(L, tm, t, key, val); 154 callTM(L, tm, t, key, val);
155 return; 155 return;
156 } 156 }
157 t = tm; /* else repeat with `tm' */ 157 t = tm; /* else repeat with `tm' */
158 } 158 }
159 luaG_runerror(L, "loop in settable"); 159 luaG_runerror(L, "loop in settable");
160} 160}