From c4ea0c3b29252bcafeadf2f69532bdb67ab20bb9 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Wed, 26 Jan 2011 14:30:02 -0200 Subject: detail (cleaning trailing spaces) --- lbaselib.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lbaselib.c') diff --git a/lbaselib.c b/lbaselib.c index bc169563..64a609fd 100644 --- a/lbaselib.c +++ b/lbaselib.c @@ -1,5 +1,5 @@ /* -** $Id: lbaselib.c,v 1.257 2010/12/27 18:00:38 roberto Exp roberto $ +** $Id: lbaselib.c,v 1.258 2011/01/07 12:41:48 roberto Exp roberto $ ** Basic library ** See Copyright Notice in lua.h */ @@ -135,7 +135,7 @@ static int luaB_rawequal (lua_State *L) { static int luaB_rawlen (lua_State *L) { int t = lua_type(L, 1); - luaL_argcheck(L, t == LUA_TTABLE || t == LUA_TSTRING, 1, + luaL_argcheck(L, t == LUA_TTABLE || t == LUA_TSTRING, 1, "table or string expected"); lua_pushinteger(L, lua_rawlen(L, 1)); return 1; -- cgit v1.2.3-55-g6feb