From: Arun Prakash Jana Date: Sun, 11 Nov 2018 21:44:43 +0000 (+0530) Subject: Ignore SIGQUIT X-Git-Tag: v2.1~25 X-Git-Url: http://www.git.stargrave.org/?a=commitdiff_plain;h=fabcc488ea3323cab5e4dcc983af18f1e334633d;p=nnn.git Ignore SIGQUIT --- diff --git a/src/nnn.c b/src/nnn.c index bcc54b22..0cf0392d 100644 --- a/src/nnn.c +++ b/src/nnn.c @@ -3543,6 +3543,7 @@ int main(int argc, char *argv[]) cfg.autoselect = 0; signal(SIGINT, SIG_IGN); + signal(SIGQUIT, SIG_IGN); /* Test initial path */ if (!xdiraccess(ipath)) {