aboutsummaryrefslogtreecommitdiff
path: root/lobject.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2001-06-28 11:57:17 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2001-06-28 11:57:17 -0300
commit770954510fd04912b2d84db0bd68dac62eaa5c5a (patch)
tree87344ef83c11905af034e969b224103edff97796 /lobject.h
parentb346834a09c086affce6308c7917a8f6af310d11 (diff)
downloadlua-770954510fd04912b2d84db0bd68dac62eaa5c5a.tar.gz
lua-770954510fd04912b2d84db0bd68dac62eaa5c5a.tar.bz2
lua-770954510fd04912b2d84db0bd68dac62eaa5c5a.zip
rename of `kproto' to `p'
Diffstat (limited to 'lobject.h')
-rw-r--r--lobject.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/lobject.h b/lobject.h
index b0af0e5f..9a19ea8e 100644
--- a/lobject.h
+++ b/lobject.h
@@ -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 {
124typedef struct Proto { 124typedef 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;