From eceb548b02f0d72ca6a6e9a68bfd615ac9549a64 Mon Sep 17 00:00:00 2001 From: "Arnold D. Robbins" Date: Fri, 25 Jan 2019 11:47:18 +0200 Subject: Rework namespace handling to make simpler and correct. Add two test cases. --- command.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'command.c') diff --git a/command.c b/command.c index b076530d..c8ee1632 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, true); + n = lookup((yyvsp[0])->a_string); if (n == NULL || n->type != Node_func) yyerror(_("no such function - \"%s\""), (yyvsp[0])->a_string); else { -- cgit v1.2.3