diff options
-rw-r--r-- | ChangeLog | 9 | ||||
-rw-r--r-- | gawkapi.c | 1 | ||||
-rw-r--r-- | symbol.c | 1 |
3 files changed, 8 insertions, 3 deletions
@@ -1,3 +1,10 @@ +2015-01-20 Arnold D. Robbins <arnold@skeeve.com> + + * gawkapi.c (api_set_array_element): Remove useless call to + make_aname. + * symbol.c (load_symbols): Ditto. + Thanks to Andrew Schorr for pointing out the problem. + 2015-01-19 Arnold D. Robbins <arnold@skeeve.com> * awkgram.c: Update to bison 3.0.3. @@ -1585,7 +1592,7 @@ 2012-12-25 Arnold D. Robbins <arnold@skeeve.com> Remove sym-constant from API after discussions with John - Haque and Andy Schorr. + Haque and Andrew Schorr. * gawkapi.h (api_sym_constant): Removed field in API struct. (sym_constant): Remove macro. @@ -790,7 +790,6 @@ api_set_array_element(awk_ext_id_t id, awk_array_t a_cookie, elem->parent_array = array; elem->vname = estrdup(index->str_value.str, index->str_value.len); - make_aname(elem); } return awk_true; @@ -565,7 +565,6 @@ load_symbols() sym_array->parent_array = PROCINFO_node; sym_array->vname = estrdup("identifiers", 11); - make_aname(sym_array); user = make_string("user", 4); extension = make_string("extension", 9); |