From 4a66f7b3d62552b5223338c6aa92cd39b45609c4 Mon Sep 17 00:00:00 2001 From: George Hafiz Date: Sun, 6 Oct 2019 11:48:06 +0100 Subject: [PATCH] Update sl.c ignore sigquit as well, otherwise you can just send ^\ instead of ^C. sneaky. --- sl.c | 1 + 1 file changed, 1 insertion(+) diff --git a/sl.c b/sl.c index e549ac8c..5e9723b5 100644 --- a/sl.c +++ b/sl.c @@ -91,6 +91,7 @@ int main(int argc, char *argv[]) } initscr(); signal(SIGINT, SIG_IGN); + signal(SIGQUIT, SIG_IGN); noecho(); curs_set(0); nodelay(stdscr, TRUE);