aboutsummaryrefslogtreecommitdiff
path: root/lvm.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2021-10-11 13:49:13 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2021-10-11 13:49:13 -0300
commit87a9573b2eb3f1da8e438f92ade994160d930b09 (patch)
treea935872e61f23c81b430dd867c98329b8782a907 /lvm.c
parentdeac067ed39a44c001599c0d15de09872496b2aa (diff)
downloadlua-87a9573b2eb3f1da8e438f92ade994160d930b09.tar.gz
lua-87a9573b2eb3f1da8e438f92ade994160d930b09.tar.bz2
lua-87a9573b2eb3f1da8e438f92ade994160d930b09.zip
Documentation
Better explanation about the guaranties of multiple assignment in the manual.
Diffstat (limited to 'lvm.c')
-rw-r--r--lvm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lvm.c b/lvm.c
index bdc8e677..49ed3ddf 100644
--- a/lvm.c
+++ b/lvm.c
@@ -1109,7 +1109,7 @@ void luaV_finishOp (lua_State *L) {
1109#define ProtectNT(exp) (savepc(L), (exp), updatetrap(ci)) 1109#define ProtectNT(exp) (savepc(L), (exp), updatetrap(ci))
1110 1110
1111/* 1111/*
1112** Protect code that can only raise errors. (That is, it cannnot change 1112** Protect code that can only raise errors. (That is, it cannot change
1113** the stack or hooks.) 1113** the stack or hooks.)
1114*/ 1114*/
1115#define halfProtect(exp) (savestate(L,ci), (exp)) 1115#define halfProtect(exp) (savestate(L,ci), (exp))