lua

A copy of the Lua development repository
Log | Files | Refs | README

commit a66404aca612b68def99db6c7daba549a8bba4b8
parent d80659759bcbcabf8b964356e5c9c867cd55effd
Author: Roberto Ierusalimschy <roberto@inf.puc-rio.br>
Date:   Tue, 17 Oct 1995 12:29:46 -0200

function "setfallback" now gives an error if called with wrong parameters.

Diffstat:
Mfallback.c | 9+++------
Mopcode.c | 8+++++---
2 files changed, 8 insertions(+), 9 deletions(-)

diff --git a/fallback.c b/fallback.c @@ -3,7 +3,7 @@ ** TecCGraf - PUC-Rio */ -char *rcs_fallback="$Id: fallback.c,v 1.15 1995/10/09 13:14:29 roberto Exp roberto $"; +char *rcs_fallback="$Id: fallback.c,v 1.16 1995/10/17 11:52:38 roberto Exp roberto $"; #include <stdio.h> #include <string.h> @@ -48,10 +48,7 @@ void luaI_setfallback (void) char *name = lua_getstring(lua_getparam(1)); lua_Object func = lua_getparam(2); if (name == NULL || !(lua_isfunction(func) || lua_iscfunction(func))) - { - lua_pushnil(); - return; - } + lua_error("incorrect argument to function `setfallback'"); for (i=0; i<N_FB; i++) { if (strcmp(luaI_fallBacks[i].kind, name) == 0) @@ -62,7 +59,7 @@ void luaI_setfallback (void) } } /* name not found */ - lua_pushnil(); + lua_error("incorrect argument to function `setfallback'"); } diff --git a/opcode.c b/opcode.c @@ -3,7 +3,7 @@ ** TecCGraf - PUC-Rio */ -char *rcs_opcode="$Id: opcode.c,v 3.44 1995/10/17 11:58:41 roberto Exp roberto $"; +char *rcs_opcode="$Id: opcode.c,v 3.45 1995/10/17 14:12:45 roberto Exp $"; #include <setjmp.h> #include <stdlib.h> @@ -500,8 +500,10 @@ lua_Object lua_setfallback (char *name, lua_CFunction fallback) stack[CBase].value.f = luaI_setfallback; lua_pushstring(name); lua_pushcfunction(fallback); - do_protectedrun(1); - return (Ref(top-1)); + if (do_protectedrun(1) == 0) + return (Ref(top-1)); + else + return LUA_NOOBJECT; }