aboutsummaryrefslogtreecommitdiff
path: root/manual
diff options
context:
space:
mode:
Diffstat (limited to 'manual')
-rw-r--r--manual/manual.of15
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
4262onto the empty stack of the thread. 4262onto the empty stack of the thread.
4263then you call @Lid{lua_resume}, 4263then you call @Lid{lua_resume},
4264with @id{nargs} being the number of arguments. 4264with @id{nargs} being the number of arguments.
4265This call returns when the coroutine suspends or finishes its execution. 4265The function returns when the coroutine suspends,
4266When it returns, 4266finishes its execution, or raises an unprotected error.
4267When it returns without errors,
4267@id{*nresults} is updated and 4268@id{*nresults} is updated and
4268the top of the stack contains 4269the top of the stack contains
4269the @id{*nresults} values passed to @Lid{lua_yield} 4270the @id{*nresults} values passed to @Lid{lua_yield}
@@ -4274,9 +4275,11 @@ or returned by the body function.
4274without errors, 4275without errors,
4275or an error code in case of errors @see{statuscodes}. 4276or an error code in case of errors @see{statuscodes}.
4276In case of errors, 4277In case of errors,
4277the error object is on the top of the stack. 4278the error object is pushed on the top of the stack.
4279(In that case, @id{nresults} is not updated,
4280as its value would have to be 1 for the sole error object.)
4278 4281
4279To resume a coroutine, 4282To resume a suspended coroutine,
4280you remove the @id{*nresults} yielded values from its stack, 4283you remove the @id{*nresults} yielded values from its stack,
4281push the values to be passed as results from @id{yield}, 4284push the values to be passed as results from @id{yield},
4282and then call @Lid{lua_resume}. 4285and 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}