From a9c61d2de477516651a542bc782e4541c8df5ea5 Mon Sep 17 00:00:00 2001 From: Radon Rosborough Date: Thu, 12 Aug 2021 18:14:49 -0700 Subject: [PATCH] Looks like we didn't actually want this --- system/src/riju-pty.c | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/system/src/riju-pty.c b/system/src/riju-pty.c index 402f1f4..685fd49 100644 --- a/system/src/riju-pty.c +++ b/system/src/riju-pty.c @@ -104,16 +104,10 @@ int main(int argc, char **argv) len -= 1; ptr += 1; continue; - case 26: - if (kill(exec_pid, SIGTSTP) < 0) - die("kill failed"); - len -= 1; - ptr += 1; - continue; } int limit = len; for (int idx = 0; idx < len; ++idx) { - if (buf[idx] == 3 || buf[idx] == 26) { + if (buf[idx] == 3) { limit = idx; break; }