diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2019-02-17 21:24:24 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2019-02-17 21:24:24 +0200 |
commit | 2fb99a213dfe3a88087bdccb9f57b6de5f8a5644 (patch) | |
tree | ea541900d428a930bd83c91b2d63c53ec35f7089 /main.c | |
parent | 708196dcbb974209f586a749ef6045c8c3039e1c (diff) | |
download | egawk-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) |