aboutsummaryrefslogtreecommitdiff
path: root/ltable.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2024-06-27 15:01:57 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2024-06-27 15:01:57 -0300
commit6ac7219da31df0238dc33c2d4457f69bfe0c1e79 (patch)
treec9fc124ed998ea39a6222556bb581817791089de /ltable.c
parent9904c253da9690728710082cfb94654709ab89e7 (diff)
downloadlua-6ac7219da31df0238dc33c2d4457f69bfe0c1e79.tar.gz
lua-6ac7219da31df0238dc33c2d4457f69bfe0c1e79.tar.bz2
lua-6ac7219da31df0238dc33c2d4457f69bfe0c1e79.zip
'isIT'/'isOT' turned from macros to functions
Diffstat (limited to 'ltable.c')
-rw-r--r--ltable.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ltable.c b/ltable.c
index 40a4683f..1be291c7 100644
--- a/ltable.c
+++ b/ltable.c
@@ -278,7 +278,7 @@ static int equalkey (const TValue *k1, const Node *n2, int deadok) {
278/* 278/*
279** Returns the real size of the 'array' array 279** Returns the real size of the 'array' array
280*/ 280*/
281LUAI_FUNC unsigned int luaH_realasize (const Table *t) { 281unsigned int luaH_realasize (const Table *t) {
282 if (limitequalsasize(t)) 282 if (limitequalsasize(t))
283 return t->alimit; /* this is the size */ 283 return t->alimit; /* this is the size */
284 else { 284 else {