From fabcc488ea3323cab5e4dcc983af18f1e334633d Mon Sep 17 00:00:00 2001 From: Arun Prakash Jana Date: Mon, 12 Nov 2018 03:14:43 +0530 Subject: [PATCH] Ignore SIGQUIT --- src/nnn.c | 1 + 1 file changed, 1 insertion(+) 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)) {