aboutsummaryrefslogtreecommitdiff
path: root/ltablib.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2011-09-30 09:45:45 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2011-09-30 09:45:45 -0300
commit50cddefeeb409ce3cd696abc5b1e6303089266a9 (patch)
treef89330ed4a15dc8240b7a1277a249d66dfac1f38 /ltablib.c
parente24f1ee9ff2def53a5cca19038d8b1ee6afc5c62 (diff)
downloadlua-50cddefeeb409ce3cd696abc5b1e6303089266a9.tar.gz
lua-50cddefeeb409ce3cd696abc5b1e6303089266a9.tar.bz2
lua-50cddefeeb409ce3cd696abc5b1e6303089266a9.zip
lint (wrong identation)
Diffstat (limited to 'ltablib.c')
-rw-r--r--ltablib.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ltablib.c b/ltablib.c
index b2e89e8e..c1bd5ff0 100644
--- a/ltablib.c
+++ b/ltablib.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ltablib.c,v 1.60 2011/07/02 16:01:44 roberto Exp roberto $ 2** $Id: ltablib.c,v 1.61 2011/07/05 12:49:35 roberto Exp roberto $
3** Library for Table Manipulation 3** Library for Table Manipulation
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -86,7 +86,7 @@ static void addfield (lua_State *L, luaL_Buffer *b, int i) {
86 if (!lua_isstring(L, -1)) 86 if (!lua_isstring(L, -1))
87 luaL_error(L, "invalid value (%s) at index %d in table for " 87 luaL_error(L, "invalid value (%s) at index %d in table for "
88 LUA_QL("concat"), luaL_typename(L, -1), i); 88 LUA_QL("concat"), luaL_typename(L, -1), i);
89 luaL_addvalue(b); 89 luaL_addvalue(b);
90} 90}
91 91
92 92