diff options
| author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2001-06-28 11:57:17 -0300 |
|---|---|---|
| committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2001-06-28 11:57:17 -0300 |
| commit | 770954510fd04912b2d84db0bd68dac62eaa5c5a (patch) | |
| tree | 87344ef83c11905af034e969b224103edff97796 /lobject.h | |
| parent | b346834a09c086affce6308c7917a8f6af310d11 (diff) | |
| download | lua-770954510fd04912b2d84db0bd68dac62eaa5c5a.tar.gz lua-770954510fd04912b2d84db0bd68dac62eaa5c5a.tar.bz2 lua-770954510fd04912b2d84db0bd68dac62eaa5c5a.zip | |
rename of `kproto' to `p'
Diffstat (limited to 'lobject.h')
| -rw-r--r-- | lobject.h | 6 |
1 files changed, 3 insertions, 3 deletions
| @@ -1,5 +1,5 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** $Id: lobject.h,v 1.107 2001/06/26 13:20:45 roberto Exp roberto $ | 2 | ** $Id: lobject.h,v 1.108 2001/06/28 14:48:44 roberto Exp roberto $ |
| 3 | ** Type definitions for Lua objects | 3 | ** Type definitions for Lua objects |
| 4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
| 5 | */ | 5 | */ |
| @@ -124,8 +124,8 @@ typedef union Udata { | |||
| 124 | typedef struct Proto { | 124 | typedef struct Proto { |
| 125 | TObject *k; /* constants used by the function */ | 125 | TObject *k; /* constants used by the function */ |
| 126 | int sizek; /* size of `k' */ | 126 | int sizek; /* size of `k' */ |
| 127 | struct Proto **kproto; /* functions defined inside the function */ | 127 | struct Proto **p; /* functions defined inside the function */ |
| 128 | int sizekproto; /* size of `kproto' */ | 128 | int sizep; /* size of `p' */ |
| 129 | Instruction *code; | 129 | Instruction *code; |
| 130 | int sizecode; | 130 | int sizecode; |
| 131 | short nupvalues; | 131 | short nupvalues; |
