aboutsummaryrefslogtreecommitdiffstats
path: root/eval.c
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2019-02-17 21:24:24 +0200
committerArnold D. Robbins <arnold@skeeve.com>2019-02-17 21:24:24 +0200
commit2fb99a213dfe3a88087bdccb9f57b6de5f8a5644 (patch)
treeea541900d428a930bd83c91b2d63c53ec35f7089 /eval.c
parent708196dcbb974209f586a749ef6045c8c3039e1c (diff)
downloadegawk-2fb99a213dfe3a88087bdccb9f57b6de5f8a5644.tar.gz
egawk-2fb99a213dfe3a88087bdccb9f57b6de5f8a5644.tar.bz2
egawk-2fb99a213dfe3a88087bdccb9f57b6de5f8a5644.zip
Fix calling user defined functions from eval.
Diffstat (limited to 'eval.c')
-rw-r--r--eval.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/eval.c b/eval.c
index aa78d3e6..4858fa69 100644
--- a/eval.c
+++ b/eval.c
@@ -325,6 +325,7 @@ static struct optypetab {
{ "Op_K_next", "next" },
{ "Op_K_exit", "exit" },
{ "Op_K_return", "return" },
+ { "Op_K_return_from_eval", "return" },
{ "Op_K_delete", "delete" },
{ "Op_K_delete_loop", NULL },
{ "Op_K_getline_redir", "getline" },