diff options
Diffstat (limited to 'command.y')
-rw-r--r-- | command.y | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -471,7 +471,7 @@ func_name : D_STRING { NODE *n; - n = lookup($1->a_string, true); + n = lookup($1->a_string); if (n == NULL || n->type != Node_func) yyerror(_("no such function - \"%s\""), $1->a_string); else { |