diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2018-06-17 21:53:04 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2018-06-17 21:53:04 +0300 |
commit | 7f57d12c835729207aea12e22021efce1705e6a0 (patch) | |
tree | d218d51151c96bd671dd6797462ff9fa6d1ea362 /debug.c | |
parent | 1e80e4d9f9bb3df825fe93e807f4045e1d07eac8 (diff) | |
parent | edaf82c330629586b1158a3dec407d53084b02e3 (diff) | |
download | egawk-7f57d12c835729207aea12e22021efce1705e6a0.tar.gz egawk-7f57d12c835729207aea12e22021efce1705e6a0.tar.bz2 egawk-7f57d12c835729207aea12e22021efce1705e6a0.zip |
Merge branch 'gawk-4.2-stable'
Diffstat (limited to 'debug.c')
-rw-r--r-- | debug.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -5405,11 +5405,11 @@ save_options(const char *file) static void close_all() { - bool stdio_problem; + bool stdio_problem, got_EPIPE; struct command_source *cs; (void) nextfile(& curfile, true); /* close input data file */ - (void) close_io(& stdio_problem); + (void) close_io(& stdio_problem, & got_EPIPE); if (cur_srcfile->fd != INVALID_HANDLE) { close(cur_srcfile->fd); cur_srcfile->fd = INVALID_HANDLE; |