diff options
| author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1999-07-22 16:35:41 -0300 |
|---|---|---|
| committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1999-07-22 16:35:41 -0300 |
| commit | 438598aeea6f602944f116148b0c3d725b563c7f (patch) | |
| tree | 077e2e30743c097f82317e243fa7aecf86740ff8 | |
| parent | e9a670695a764408aae2bd970ded7a58d98921c4 (diff) | |
| download | lua-438598aeea6f602944f116148b0c3d725b563c7f.tar.gz lua-438598aeea6f602944f116148b0c3d725b563c7f.tar.bz2 lua-438598aeea6f602944f116148b0c3d725b563c7f.zip | |
details.
| -rw-r--r-- | lbuiltin.c | 4 |
1 files changed, 2 insertions, 2 deletions
| @@ -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) { | |||
| 386 | static void luaB_assert (void) { | 386 | static 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 | ||
