aboutsummaryrefslogtreecommitdiffstats
path: root/command.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2022-04-12 07:15:51 -0700
committerKaz Kylheku <kaz@kylheku.com>2022-04-12 07:15:51 -0700
commitc0af51d412931f8b7a23eb0d782177f8244d9534 (patch)
tree2a556a7a8c52544991b01d7bd3d804fc97653c79 /command.c
parent3905cde43431cc4edcf901931f7b46511c21e6d8 (diff)
downloadegawk-c0af51d412931f8b7a23eb0d782177f8244d9534.tar.gz
egawk-c0af51d412931f8b7a23eb0d782177f8244d9534.tar.bz2
egawk-c0af51d412931f8b7a23eb0d782177f8244d9534.zip
Update generated parsers.
* awkgram.c, command.c: Files regenerated using matching Bison 3.8.
Diffstat (limited to 'command.c')
-rw-r--r--command.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/command.c b/command.c
index fba9494a..f6dce96f 100644
--- a/command.c
+++ b/command.c
@@ -3426,7 +3426,7 @@ variable_generator(const char *text, int state)
idx = 0;
break;
}
- name = func->fparms[idx++].param;
+ name = func->fparms[idx++]->param;
if (strncmp(name, text, textlen) == 0)
return estrdup(name, strlen(name));
}