aboutsummaryrefslogtreecommitdiffstats
path: root/symbol.c
diff options
context:
space:
mode:
Diffstat (limited to 'symbol.c')
-rw-r--r--symbol.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/symbol.c b/symbol.c
index dc87ed90..1e0e474b 100644
--- a/symbol.c
+++ b/symbol.c
@@ -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);