diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2013-05-28 21:19:36 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2013-05-28 21:19:36 +0300 |
commit | 193a78e55fc2e0cd54e0da204d2f9eb0f90f1fb2 (patch) | |
tree | 29f91f479da30d8ad768f6d38e5368a7d8fea587 /main.c | |
parent | 94b64f95755e183578d74fafa3e6403a1f23545a (diff) | |
download | egawk-193a78e55fc2e0cd54e0da204d2f9eb0f90f1fb2.tar.gz egawk-193a78e55fc2e0cd54e0da204d2f9eb0f90f1fb2.tar.bz2 egawk-193a78e55fc2e0cd54e0da204d2f9eb0f90f1fb2.zip |
Minor profiling fixes. More to come.
Diffstat (limited to 'main.c')
-rw-r--r-- | main.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -722,6 +722,9 @@ out: if (do_debug) debug_prog(code_block); + else if (do_pretty_print && ! do_debug && getenv("GAWK_NO_PP_RUN") != NULL) + /* hack to run pretty printer only. need a better solution */ + ; else interpret(code_block); |