diff options
Diffstat (limited to 'lapi.c')
| -rw-r--r-- | lapi.c | 11 |
1 files changed, 10 insertions, 1 deletions
| @@ -1,5 +1,5 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** $Id: lapi.c,v 1.96 2000/09/11 20:29:27 roberto Exp roberto $ | 2 | ** $Id: lapi.c,v 1.97 2000/09/12 13:47:46 roberto Exp $ |
| 3 | ** Lua API | 3 | ** Lua API |
| 4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
| 5 | */ | 5 | */ |
| @@ -366,6 +366,15 @@ int lua_ref (lua_State *L, int lock) { | |||
| 366 | } | 366 | } |
| 367 | 367 | ||
| 368 | 368 | ||
| 369 | /* | ||
| 370 | ** "do" functions (run Lua code) | ||
| 371 | ** (most of them are in ldo.c) | ||
| 372 | */ | ||
| 373 | |||
| 374 | void lua_rawcall (lua_State *L, int nargs, int nresults) { | ||
| 375 | luaD_call(L, L->top-(nargs+1), nresults); | ||
| 376 | } | ||
| 377 | |||
| 369 | 378 | ||
| 370 | /* | 379 | /* |
| 371 | ** miscellaneous functions | 380 | ** miscellaneous functions |
