diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2012-10-31 19:51:04 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2012-10-31 19:51:04 +0200 |
commit | 993eaa708f7785e0ab5c1b1e53ddf4abe1d835e4 (patch) | |
tree | 41af325f0266b3316de634a57fa12ffa2b86c6b2 /symbol.c | |
parent | cec88d59be5ef7c50647e45f5aeb3d9260236705 (diff) | |
download | egawk-993eaa708f7785e0ab5c1b1e53ddf4abe1d835e4.tar.gz egawk-993eaa708f7785e0ab5c1b1e53ddf4abe1d835e4.tar.bz2 egawk-993eaa708f7785e0ab5c1b1e53ddf4abe1d835e4.zip |
Some minor fixes. See ChangeLog.
Diffstat (limited to 'symbol.c')
-rw-r--r-- | symbol.c | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -521,16 +521,16 @@ load_symbols() long i, j, max; NODE *user, *extension, *untyped, *scalar, *array; NODE **list; - NODE *tables[] = { - func_table, - symbol_table, - global_table, - NULL - }; + NODE *tables[4]; if (PROCINFO_node == NULL) return; + tables[0] = func_table; + tables[1] = symbol_table; + tables[2] = global_table; + tables[3] = NULL; + tmp = make_string("identifiers", 11); aptr = assoc_lookup(PROCINFO_node, tmp); |