aboutsummaryrefslogtreecommitdiffstats
path: root/command.c
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2019-01-11 15:14:33 +0200
committerArnold D. Robbins <arnold@skeeve.com>2019-01-11 15:14:33 +0200
commit663aff4ae012468c54d2e994e839d0e75210ef80 (patch)
treeb65cc16d7e36cab817c5ad64611fdb54c8a3ad1a /command.c
parentfeebb01f31e29740b050da1531416c90a12352ca (diff)
downloadegawk-663aff4ae012468c54d2e994e839d0e75210ef80.tar.gz
egawk-663aff4ae012468c54d2e994e839d0e75210ef80.tar.bz2
egawk-663aff4ae012468c54d2e994e839d0e75210ef80.zip
Squashed merge of feature/namespaces. Add code and doc.
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 c8ee1632..b076530d 100644
--- a/command.c
+++ b/command.c
@@ -1954,7 +1954,7 @@ yyreduce:
#line 472 "command.y" /* yacc.c:1645 */
{
NODE *n;
- n = lookup((yyvsp[0])->a_string);
+ n = lookup((yyvsp[0])->a_string, true);
if (n == NULL || n->type != Node_func)
yyerror(_("no such function - \"%s\""), (yyvsp[0])->a_string);
else {