aboutsummaryrefslogtreecommitdiffstats
path: root/interpret.h
diff options
context:
space:
mode:
Diffstat (limited to 'interpret.h')
-rw-r--r--interpret.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/interpret.h b/interpret.h
index c26a9d46..be017355 100644
--- a/interpret.h
+++ b/interpret.h
@@ -1038,7 +1038,11 @@ match_re:
f = lookup(t1->stptr);
}
- if (f == NULL || f->type != Node_func) {
+ if (f == NULL) {
+ /* FIXME: See if function is a built-in and try to call it */
+ fatal(_("`%s' is not a user-defined function, so it cannot be called indirectly"),
+ t1->stptr);
+ } else if(f->type != Node_func) {
if (f->type == Node_ext_func || f->type == Node_old_ext_func)
fatal(_("cannot (yet) call extension functions indirectly"));
else