diff options
-rw-r--r-- | lua.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lua.h,v 1.256 2009/12/22 15:32:50 roberto Exp roberto $ | 2 | ** $Id: lua.h,v 1.257 2009/12/22 16:47:00 roberto Exp roberto $ |
3 | ** Lua - A Scripting Language | 3 | ** Lua - A Scripting Language |
4 | ** Lua.org, PUC-Rio, Brazil (http://www.lua.org) | 4 | ** Lua.org, PUC-Rio, Brazil (http://www.lua.org) |
5 | ** See Copyright Notice at the end of this file | 5 | ** See Copyright Notice at the end of this file |
@@ -404,9 +404,9 @@ struct lua_Debug { | |||
404 | const char *what; /* (S) 'Lua', 'C', 'main', 'tail' */ | 404 | const char *what; /* (S) 'Lua', 'C', 'main', 'tail' */ |
405 | const char *source; /* (S) */ | 405 | const char *source; /* (S) */ |
406 | int currentline; /* (l) */ | 406 | int currentline; /* (l) */ |
407 | int nups; /* (u) number of upvalues */ | ||
408 | int linedefined; /* (S) */ | 407 | int linedefined; /* (S) */ |
409 | int lastlinedefined; /* (S) */ | 408 | int lastlinedefined; /* (S) */ |
409 | unsigned char nups; /* (u) number of upvalues */ | ||
410 | char istailcall; /* (t) */ | 410 | char istailcall; /* (t) */ |
411 | char short_src[LUA_IDSIZE]; /* (S) */ | 411 | char short_src[LUA_IDSIZE]; /* (S) */ |
412 | /* private part */ | 412 | /* private part */ |