diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2021-12-17 11:14:00 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2021-12-17 11:14:00 +0200 |
commit | b52237743955ece2c890aeb0959c03e70e3175e3 (patch) | |
tree | 29618b84f7089d1caebbe1b9a91f5d83b1e4ea16 /debug.c | |
parent | 03183d8f307ee708fe57de2d9d923c3885f80bc8 (diff) | |
parent | aa58c798bed920b6051c4459488195df2b76aaf4 (diff) | |
download | egawk-b52237743955ece2c890aeb0959c03e70e3175e3.tar.gz egawk-b52237743955ece2c890aeb0959c03e70e3175e3.tar.bz2 egawk-b52237743955ece2c890aeb0959c03e70e3175e3.zip |
Merge branch 'master' into feature/readall
Diffstat (limited to 'debug.c')
-rw-r--r-- | debug.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -64,7 +64,7 @@ int input_fd; static SRCFILE *cur_srcfile; static long cur_frame = 0; static INSTRUCTION *cur_pc; -int cur_rule = 0; +static int cur_rule = 0; static bool prog_running = false; @@ -3303,7 +3303,7 @@ do_return(CMDARG *arg, int cmd) /* check_until --- process until, returns true if stopping */ -int +static int check_until(INSTRUCTION **pi) { if (fcall_count < stop.fcall_count) { /* current stack frame returned */ |