diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1996-09-24 14:30:28 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1996-09-24 14:30:28 -0300 |
commit | 6d383202dca4535866a339f17202e40b2775d160 (patch) | |
tree | b0f1eb749339f1ba917493afbc99a31a72ad7b29 /inout.c | |
parent | 7b8166d7b3949839bffcc15e167269e4a6d4660c (diff) | |
download | lua-6d383202dca4535866a339f17202e40b2775d160.tar.gz lua-6d383202dca4535866a339f17202e40b2775d160.tar.bz2 lua-6d383202dca4535866a339f17202e40b2775d160.zip |
"dofile" and "dostring" may return values.
Diffstat (limited to 'inout.c')
-rw-r--r-- | inout.c | 23 |
1 files changed, 17 insertions, 6 deletions
@@ -5,7 +5,7 @@ | |||
5 | ** Also provides some predefined lua functions. | 5 | ** Also provides some predefined lua functions. |
6 | */ | 6 | */ |
7 | 7 | ||
8 | char *rcs_inout="$Id: inout.c,v 2.39 1996/09/09 14:11:11 roberto Exp roberto $"; | 8 | char *rcs_inout="$Id: inout.c,v 2.40 1996/09/11 21:53:02 roberto Exp roberto $"; |
9 | 9 | ||
10 | #include <stdio.h> | 10 | #include <stdio.h> |
11 | #include <string.h> | 11 | #include <string.h> |
@@ -111,15 +111,25 @@ static void check_arg (int cond, char *func) | |||
111 | } | 111 | } |
112 | } | 112 | } |
113 | 113 | ||
114 | |||
115 | static int passresults (void) | ||
116 | { | ||
117 | int arg = 0; | ||
118 | lua_Object obj; | ||
119 | while ((obj = lua_getresult(++arg)) != LUA_NOOBJECT) | ||
120 | lua_pushobject(obj); | ||
121 | return arg-1; | ||
122 | } | ||
114 | 123 | ||
115 | /* | 124 | /* |
116 | ** Internal function: do a string | 125 | ** Internal function: do a string |
117 | */ | 126 | */ |
118 | void lua_internaldostring (void) | 127 | void lua_internaldostring (void) |
119 | { | 128 | { |
120 | lua_Object obj = lua_getparam (1); | 129 | lua_Object obj = lua_getparam (1); |
121 | if (lua_isstring(obj) && !lua_dostring(lua_getstring(obj))) | 130 | if (lua_isstring(obj) && lua_dostring(lua_getstring(obj)) == 0) |
122 | lua_pushnumber(1); | 131 | if (passresults() == 0) |
132 | lua_pushuserdata(NULL); /* at least one result to signal no errors */ | ||
123 | } | 133 | } |
124 | 134 | ||
125 | /* | 135 | /* |
@@ -134,8 +144,9 @@ void lua_internaldofile (void) | |||
134 | else if (obj != LUA_NOOBJECT) | 144 | else if (obj != LUA_NOOBJECT) |
135 | lua_error("invalid argument to function `dofile'"); | 145 | lua_error("invalid argument to function `dofile'"); |
136 | /* else fname = NULL */ | 146 | /* else fname = NULL */ |
137 | if (!lua_dofile(fname)) | 147 | if (lua_dofile(fname) == 0) |
138 | lua_pushnumber(1); | 148 | if (passresults() == 0) |
149 | lua_pushuserdata(NULL); /* at least one result to signal no errors */ | ||
139 | } | 150 | } |
140 | 151 | ||
141 | 152 | ||