aboutsummaryrefslogtreecommitdiff
path: root/ldo.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2002-02-08 20:42:41 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2002-02-08 20:42:41 -0200
commite01f5e680951a66bd67a22eeed1d9e05ab30b9f2 (patch)
tree99ff32eedd3bf3194561f5a2d916d948ba81c4f9 /ldo.c
parentcbfc581990db2e20ee06670dbf84f28bcfe1dc42 (diff)
downloadlua-e01f5e680951a66bd67a22eeed1d9e05ab30b9f2.tar.gz
lua-e01f5e680951a66bd67a22eeed1d9e05ab30b9f2.tar.bz2
lua-e01f5e680951a66bd67a22eeed1d9e05ab30b9f2.zip
better order of record fields for 64-bit machines
Diffstat (limited to 'ldo.c')
-rw-r--r--ldo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ldo.c b/ldo.c
index 6f850cbd..ec39419a 100644
--- a/ldo.c
+++ b/ldo.c
@@ -32,10 +32,10 @@
32 32
33/* chain list of long jump buffers */ 33/* chain list of long jump buffers */
34struct lua_longjmp { 34struct lua_longjmp {
35 jmp_buf b;
36 struct lua_longjmp *previous; 35 struct lua_longjmp *previous;
37 CallInfo *ci; /* index of call info of active function that set protection */ 36 CallInfo *ci; /* index of call info of active function that set protection */
38 StkId top; /* top stack when protection was set */ 37 StkId top; /* top stack when protection was set */
38 jmp_buf b;
39 int allowhooks; /* `allowhook' state when protection was set */ 39 int allowhooks; /* `allowhook' state when protection was set */
40 volatile int status; /* error code */ 40 volatile int status; /* error code */
41}; 41};