diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2012-10-02 16:26:15 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2012-10-02 16:26:15 +0200 |
commit | 9e2703f7ca0b35129a94465654d0e18d14048dbc (patch) | |
tree | c3ba2eccb5befd68af16a5e76c750957e675496d /symbol.c | |
parent | b9a82851866f84ca306a2802b4ca50089a2fe683 (diff) | |
download | egawk-9e2703f7ca0b35129a94465654d0e18d14048dbc.tar.gz egawk-9e2703f7ca0b35129a94465654d0e18d14048dbc.tar.bz2 egawk-9e2703f7ca0b35129a94465654d0e18d14048dbc.zip |
Document SYMTAB and FUNCTAB. Disable for --posix.
Diffstat (limited to 'symbol.c')
-rw-r--r-- | symbol.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -107,6 +107,10 @@ lookup(const char *name) for (i = 0; tables[i] != NULL; i++) { if (tables[i]->table_size == 0) continue; + + if (do_posix && tables[i] == global_table) + continue; + n = in_array(tables[i], tmp); if (n != NULL) { unref(tmp); |