diff options
Diffstat (limited to 'interpret.h')
-rw-r--r-- | interpret.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/interpret.h b/interpret.h index e9896672..720b583a 100644 --- a/interpret.h +++ b/interpret.h @@ -1108,7 +1108,7 @@ match_re: ni = setup_frame(pc); JUMPTO(ni); /* Op_func */ } - f = lookup(t1->stptr, true); + f = lookup(t1->stptr); } if (f == NULL) { @@ -1172,7 +1172,7 @@ match_re: /* retrieve function definition node */ f = pc->func_body; if (f == NULL) { - f = lookup(pc->func_name, true); + f = lookup(pc->func_name); if (f == NULL || (f->type != Node_func && f->type != Node_ext_func)) fatal(_("function `%s' not defined"), pc->func_name); pc->func_body = f; /* save for next call */ |