From fa2a20f9898c0410c682a7fee231334857875bd7 Mon Sep 17 00:00:00 2001 From: Brendan Cully Date: Sat, 8 Aug 2009 16:40:15 -0700 Subject: [PATCH] Abort prompt on ^C, as was the case prior to 12a6de725483 --- curs_lib.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/curs_lib.c b/curs_lib.c index 43a563c06..23a1e56f2 100644 --- a/curs_lib.c +++ b/curs_lib.c @@ -98,7 +98,10 @@ event_t mutt_getch (void) mutt_allow_interrupt (0); if (SigInt) + { mutt_query_exit (); + return err; + } if(ch == ERR) { -- 2.49.0