aboutsummaryrefslogtreecommitdiff
path: root/lstate.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2015-11-13 10:16:51 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2015-11-13 10:16:51 -0200
commit89e3a843442679252773a29114c8552e3f59777d (patch)
tree74c9bcfd5d2f3c877877c20654fd33e9f3825c1d /lstate.h
parent04587b62562f246e89d1b138bed5b90ee4bdfe69 (diff)
downloadlua-89e3a843442679252773a29114c8552e3f59777d.tar.gz
lua-89e3a843442679252773a29114c8552e3f59777d.tar.bz2
lua-89e3a843442679252773a29114c8552e3f59777d.zip
removed field 'n' from 'CallInfo' (not being used right now)
Diffstat (limited to 'lstate.h')
-rw-r--r--lstate.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/lstate.h b/lstate.h
index 4b4577e2..b5ac89c2 100644
--- a/lstate.h
+++ b/lstate.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lstate.h,v 2.126 2015/11/02 11:43:17 roberto Exp roberto $ 2** $Id: lstate.h,v 2.127 2015/11/02 16:01:41 roberto Exp roberto $
3** Global State 3** Global State
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -78,7 +78,6 @@ typedef struct CallInfo {
78 } c; 78 } c;
79 } u; 79 } u;
80 ptrdiff_t extra; 80 ptrdiff_t extra;
81 unsigned short n; /* ordinal number in call list */
82 short nresults; /* expected number of results from this function */ 81 short nresults; /* expected number of results from this function */
83 lu_byte callstatus; 82 lu_byte callstatus;
84} CallInfo; 83} CallInfo;