aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1997-06-20 16:19:09 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1997-06-20 16:19:09 -0300
commit6402bfb1f84391cab2c55bad45fec0f82da3c359 (patch)
treefb603fda551804d0cd415432f8b3ec0e7a65a91c
parent27b6bbdcf3de2c8a1d4fcd20d7fd9f4b950e71d3 (diff)
downloadlua-6402bfb1f84391cab2c55bad45fec0f82da3c359.tar.gz
lua-6402bfb1f84391cab2c55bad45fec0f82da3c359.tar.bz2
lua-6402bfb1f84391cab2c55bad45fec0f82da3c359.zip
better error message for dostring (2nd argument)
-rw-r--r--inout.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/inout.c b/inout.c
index 7d9d5cea..64e018d7 100644
--- a/inout.c
+++ b/inout.c
@@ -5,7 +5,7 @@
5** Also provides some predefined lua functions. 5** Also provides some predefined lua functions.
6*/ 6*/
7 7
8char *rcs_inout="$Id: inout.c,v 2.64 1997/06/19 18:04:34 roberto Exp roberto $"; 8char *rcs_inout="$Id: inout.c,v 2.65 1997/06/19 18:49:40 roberto Exp roberto $";
9 9
10#include <stdio.h> 10#include <stdio.h>
11#include <string.h> 11#include <string.h>
@@ -152,6 +152,8 @@ static void lua_internaldostring (void)
152{ 152{
153 lua_Object err = lua_getparam(2); 153 lua_Object err = lua_getparam(2);
154 if (err != LUA_NOOBJECT) { /* set new error method */ 154 if (err != LUA_NOOBJECT) { /* set new error method */
155 luaL_arg_check(lua_isnil(err) || lua_isfunction(err), 2,
156 "must be a valid error handler");
155 lua_pushobject(err); 157 lua_pushobject(err);
156 err = lua_seterrormethod(); 158 err = lua_seterrormethod();
157 } 159 }