diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2021-02-05 17:51:25 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2021-02-05 17:51:25 -0300 |
commit | c63e5d212bc5dec1b1c749e3f07b42cd83081826 (patch) | |
tree | 35c2dc1d828e0ec9c89d60ac2702b847e002a68f /lapi.c | |
parent | dee6433a89b088a1f8da9531a92a2a2693e5dac7 (diff) | |
download | lua-c63e5d212bc5dec1b1c749e3f07b42cd83081826.tar.gz lua-c63e5d212bc5dec1b1c749e3f07b42cd83081826.tar.bz2 lua-c63e5d212bc5dec1b1c749e3f07b42cd83081826.zip |
New macro 'completestate'
Diffstat (limited to '')
-rw-r--r-- | lapi.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 | */ |