From 2cb553c1ecefac369abf64c3fe94580dc5ebdf07 Mon Sep 17 00:00:00 2001 From: Yigit Colakoglu Date: Mon, 12 Apr 2021 20:49:07 +0300 Subject: [PATCH] Comment on st.c --- .local/src/st/st.c | 1 + 1 file changed, 1 insertion(+) diff --git a/.local/src/st/st.c b/.local/src/st/st.c index 479968cd..2ba930cd 100644 --- a/.local/src/st/st.c +++ b/.local/src/st/st.c @@ -733,6 +733,7 @@ sigchld(int a) if (p == 0 && waitpid(-1 ,&stat, WNOHANG) < 0) /* Changed from wait(&stat) to waitpid(-1, &stat, WNOHANG) */ /* Otherwise the terminal would hang after calling iso4755 */ + /* the issue is caused by a conflict between the patches iso4755 and externalpipe */ die("wait: %s\n", strerror(errno)); signal(SIGCHLD, sigchld);