diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2020-09-04 13:24:13 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2020-09-04 13:24:13 +0300 |
commit | a9440d51fdf9286dc657b10368503aecb74eb19d (patch) | |
tree | 09aa2cf163c05802431a70b312ca1e465dffe937 /awkgram.c | |
parent | e7114e7a7fd4342a690c8214a9c0e64eb5f927b3 (diff) | |
download | egawk-a9440d51fdf9286dc657b10368503aecb74eb19d.tar.gz egawk-a9440d51fdf9286dc657b10368503aecb74eb19d.tar.bz2 egawk-a9440d51fdf9286dc657b10368503aecb74eb19d.zip |
Make PROCINFO["identifiers"] smarter about arrays.
Diffstat (limited to 'awkgram.c')
-rw-r--r-- | awkgram.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -4425,7 +4425,7 @@ regular_print: { char *arr = yyvsp[-1]->lextok; - yyvsp[-1]->memory = variable(yyvsp[-1]->source_line, arr, Node_var_new); + yyvsp[-1]->memory = variable(yyvsp[-1]->source_line, arr, Node_var_array); yyvsp[-1]->opcode = Op_push_array; yyval = list_prepend(yyvsp[0], yyvsp[-1]); } |