aboutsummaryrefslogtreecommitdiff
path: root/lapi.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2021-02-05 17:51:25 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2021-02-05 17:51:25 -0300
commitc63e5d212bc5dec1b1c749e3f07b42cd83081826 (patch)
tree35c2dc1d828e0ec9c89d60ac2702b847e002a68f /lapi.c
parentdee6433a89b088a1f8da9531a92a2a2693e5dac7 (diff)
downloadlua-c63e5d212bc5dec1b1c749e3f07b42cd83081826.tar.gz
lua-c63e5d212bc5dec1b1c749e3f07b42cd83081826.tar.bz2
lua-c63e5d212bc5dec1b1c749e3f07b42cd83081826.zip
New macro 'completestate'
Diffstat (limited to '')
-rw-r--r--lapi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lapi.c b/lapi.c
index 27bf23da..41e6b86d 100644
--- a/lapi.c
+++ b/lapi.c
@@ -39,7 +39,7 @@ const char lua_ident[] =
39 39
40 40
41/* 41/*
42** Test for a valid index. 42** Test for a valid index (one that is not the 'nilvalue').
43** '!ttisnil(o)' implies 'o != &G(L)->nilvalue', so it is not needed. 43** '!ttisnil(o)' implies 'o != &G(L)->nilvalue', so it is not needed.
44** However, it covers the most common cases in a faster way. 44** However, it covers the most common cases in a faster way.
45*/ 45*/