aboutsummaryrefslogtreecommitdiffstats
path: root/main.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 /main.c
parent708196dcbb974209f586a749ef6045c8c3039e1c (diff)
downloadegawk-2fb99a213dfe3a88087bdccb9f57b6de5f8a5644.tar.gz
egawk-2fb99a213dfe3a88087bdccb9f57b6de5f8a5644.tar.bz2
egawk-2fb99a213dfe3a88087bdccb9f57b6de5f8a5644.zip
Fix calling user defined functions from eval.
Diffstat (limited to 'main.c')
-rw-r--r--main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.c b/main.c
index d42d1f43..5800231c 100644
--- a/main.c
+++ b/main.c
@@ -465,7 +465,7 @@ main(int argc, char **argv)
setlocale(LC_NUMERIC, "C");
#endif
/* Read in the program */
- if (parse_program(& code_block) != 0 || dash_v_errs > 0)
+ if (parse_program(& code_block, false) != 0 || dash_v_errs > 0)
exit(EXIT_FAILURE);
if (do_intl)