Documentation

Better explanation about the guaranties of multiple assignment in
the manual.
This commit is contained in:
Roberto Ierusalimschy
2021-10-11 13:49:13 -03:00
parent deac067ed3
commit 87a9573b2e
4 changed files with 13 additions and 5 deletions

2
lvm.c
View File

@@ -1109,7 +1109,7 @@ void luaV_finishOp (lua_State *L) {
#define ProtectNT(exp) (savepc(L), (exp), updatetrap(ci))
/*
** Protect code that can only raise errors. (That is, it cannnot change
** Protect code that can only raise errors. (That is, it cannot change
** the stack or hooks.)
*/
#define halfProtect(exp) (savestate(L,ci), (exp))