diff options
Diffstat (limited to 'manual')
-rw-r--r-- | manual/manual.of | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/manual/manual.of b/manual/manual.of index 56619afe..1069f644 100644 --- a/manual/manual.of +++ b/manual/manual.of | |||
@@ -4262,8 +4262,9 @@ you push the main function plus any arguments | |||
4262 | onto the empty stack of the thread. | 4262 | onto the empty stack of the thread. |
4263 | then you call @Lid{lua_resume}, | 4263 | then you call @Lid{lua_resume}, |
4264 | with @id{nargs} being the number of arguments. | 4264 | with @id{nargs} being the number of arguments. |
4265 | This call returns when the coroutine suspends or finishes its execution. | 4265 | The function returns when the coroutine suspends, |
4266 | When it returns, | 4266 | finishes its execution, or raises an unprotected error. |
4267 | When it returns without errors, | ||
4267 | @id{*nresults} is updated and | 4268 | @id{*nresults} is updated and |
4268 | the top of the stack contains | 4269 | the top of the stack contains |
4269 | the @id{*nresults} values passed to @Lid{lua_yield} | 4270 | the @id{*nresults} values passed to @Lid{lua_yield} |
@@ -4274,9 +4275,11 @@ or returned by the body function. | |||
4274 | without errors, | 4275 | without errors, |
4275 | or an error code in case of errors @see{statuscodes}. | 4276 | or an error code in case of errors @see{statuscodes}. |
4276 | In case of errors, | 4277 | In case of errors, |
4277 | the error object is on the top of the stack. | 4278 | the error object is pushed on the top of the stack. |
4279 | (In that case, @id{nresults} is not updated, | ||
4280 | as its value would have to be 1 for the sole error object.) | ||
4278 | 4281 | ||
4279 | To resume a coroutine, | 4282 | To resume a suspended coroutine, |
4280 | you remove the @id{*nresults} yielded values from its stack, | 4283 | you remove the @id{*nresults} yielded values from its stack, |
4281 | push the values to be passed as results from @id{yield}, | 4284 | push the values to be passed as results from @id{yield}, |
4282 | and then call @Lid{lua_resume}. | 4285 | and then call @Lid{lua_resume}. |
@@ -4822,8 +4825,8 @@ typedef struct lua_Debug { | |||
4822 | unsigned char nparams; /* (u) number of parameters */ | 4825 | unsigned char nparams; /* (u) number of parameters */ |
4823 | char isvararg; /* (u) */ | 4826 | char isvararg; /* (u) */ |
4824 | char istailcall; /* (t) */ | 4827 | char istailcall; /* (t) */ |
4825 | unsigned short ftransfer; /* (r) index of first value transferred */ | 4828 | int ftransfer; /* (r) index of first value transferred */ |
4826 | unsigned short ntransfer; /* (r) number of transferred values */ | 4829 | int ntransfer; /* (r) number of transferred values */ |
4827 | char short_src[LUA_IDSIZE]; /* (S) */ | 4830 | char short_src[LUA_IDSIZE]; /* (S) */ |
4828 | /* private part */ | 4831 | /* private part */ |
4829 | @rep{other fields} | 4832 | @rep{other fields} |