new definition for types-tags

This commit is contained in:
Roberto Ierusalimschy
2000-10-05 09:14:08 -03:00
parent cd2ddaded9
commit 001f2bdd0e
18 changed files with 308 additions and 332 deletions

View File

@@ -1,5 +1,5 @@
/*
** $Id: lbaselib.c,v 1.7 2000/10/02 14:47:43 roberto Exp roberto $
** $Id: lbaselib.c,v 1.8 2000/10/02 20:10:55 roberto Exp roberto $
** Basic library
** See Copyright Notice in lua.h
*/
@@ -322,7 +322,7 @@ static int luaB_tostring (lua_State *L) {
case LUA_TNIL:
lua_pushstring(L, "nil");
return 1;
case LUA_NOVALUE:
default:
luaL_argerror(L, 1, "value expected");
}
lua_pushstring(L, buff);