diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1995-10-17 09:53:53 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1995-10-17 09:53:53 -0200 |
commit | 15f40fddca66301a53f8b0adf41958c7e9add945 (patch) | |
tree | c3fa93174286f0ce55b43e49610bd9ffffe60408 /tree.h | |
parent | 970995c3f258101ae90be4bcb762b6d38bb2b2fd (diff) | |
download | lua-15f40fddca66301a53f8b0adf41958c7e9add945.tar.gz lua-15f40fddca66301a53f8b0adf41958c7e9add945.tar.bz2 lua-15f40fddca66301a53f8b0adf41958c7e9add945.zip |
'nextvar' now traverses the symbol array, instead of the constant tree.
Diffstat (limited to 'tree.h')
-rw-r--r-- | tree.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,7 +1,7 @@ | |||
1 | /* | 1 | /* |
2 | ** tree.h | 2 | ** tree.h |
3 | ** TecCGraf - PUC-Rio | 3 | ** TecCGraf - PUC-Rio |
4 | ** $Id: tree.h,v 1.8 1994/12/20 21:20:36 roberto Exp roberto $ | 4 | ** $Id: tree.h,v 1.9 1995/01/12 14:19:04 roberto Exp roberto $ |
5 | */ | 5 | */ |
6 | 6 | ||
7 | #ifndef tree_h | 7 | #ifndef tree_h |
@@ -32,6 +32,6 @@ typedef struct TreeNode | |||
32 | TaggedString *lua_createstring (char *str); | 32 | TaggedString *lua_createstring (char *str); |
33 | TreeNode *lua_constcreate (char *str); | 33 | TreeNode *lua_constcreate (char *str); |
34 | Long lua_strcollector (void); | 34 | Long lua_strcollector (void); |
35 | TreeNode *lua_varnext (char *n); | 35 | TreeNode *luaI_nodebysymbol (Word symbol); |
36 | 36 | ||
37 | #endif | 37 | #endif |