about summary refs log tree commit diff
path: root/Src/init.c
diff options
context:
space:
mode:
authorBarton E. Schaefer <schaefer@zsh.org>2014-09-29 08:59:31 -0700
committerBarton E. Schaefer <schaefer@zsh.org>2014-09-29 08:59:31 -0700
commit60e31a45b0c015d42e9dc8ca2c991930c3f7fd66 (patch)
treea9718b9eb5e1041800fc7f4706bc7d3dbcbcf0ee /Src/init.c
parent7cabee52d8132fed31767392540ae67bac36377e (diff)
downloadzsh-60e31a45b0c015d42e9dc8ca2c991930c3f7fd66.tar.gz
zsh-60e31a45b0c015d42e9dc8ca2c991930c3f7fd66.tar.xz
zsh-60e31a45b0c015d42e9dc8ca2c991930c3f7fd66.zip
33268: interactive shells treat SIGPIPE like SIGHUP if and only if SHTTY is disconnected
Diffstat (limited to 'Src/init.c')
-rw-r--r--Src/init.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/Src/init.c b/Src/init.c
index 40f46a804..6d005dce7 100644
--- a/Src/init.c
+++ b/Src/init.c
@@ -1134,6 +1134,7 @@ init_signals(void)
     winch_block();	/* See utils.c:preprompt() */
 #endif
     if (interact) {
+	install_handler(SIGPIPE);
 	install_handler(SIGALRM);
 	signal_ignore(SIGTERM);
     }