aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1999-07-22 16:35:41 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1999-07-22 16:35:41 -0300
commit438598aeea6f602944f116148b0c3d725b563c7f (patch)
tree077e2e30743c097f82317e243fa7aecf86740ff8
parente9a670695a764408aae2bd970ded7a58d98921c4 (diff)
downloadlua-438598aeea6f602944f116148b0c3d725b563c7f.tar.gz
lua-438598aeea6f602944f116148b0c3d725b563c7f.tar.bz2
lua-438598aeea6f602944f116148b0c3d725b563c7f.zip
details.
-rw-r--r--lbuiltin.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lbuiltin.c b/lbuiltin.c
index 6cf915ca..ae420830 100644
--- a/lbuiltin.c
+++ b/lbuiltin.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lbuiltin.c,v 1.58 1999/05/27 20:21:03 roberto Exp roberto $ 2** $Id: lbuiltin.c,v 1.59 1999/06/17 17:04:03 roberto Exp roberto $
3** Built-in functions 3** Built-in functions
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -386,7 +386,7 @@ static void luaB_type (void) {
386static void luaB_assert (void) { 386static void luaB_assert (void) {
387 lua_Object p = lua_getparam(1); 387 lua_Object p = lua_getparam(1);
388 if (p == LUA_NOOBJECT || lua_isnil(p)) 388 if (p == LUA_NOOBJECT || lua_isnil(p))
389 luaL_verror("assertion failed! %.100s", luaL_opt_string(2, "")); 389 luaL_verror("assertion failed! %.90s", luaL_opt_string(2, ""));
390} 390}
391 391
392 392