From: Ian Zimmerman Date: Fri, 6 Jan 2017 00:18:16 +0000 (-0800) Subject: Do a buffy check after shell escape X-Git-Tag: neomutt-20170128~13 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6b1ecf78dde6a629b97ddaeeddf94d58e6aa60e9;p=neomutt Do a buffy check after shell escape Closes #284 --- diff --git a/commands.c b/commands.c index d27717096..8ae96ac21 100644 --- a/commands.c +++ b/commands.c @@ -620,7 +620,8 @@ void mutt_shell_escape (void) mutt_endwin (NULL); fflush (stdout); if (mutt_system (buf) != 0 || option (OPTWAITKEY)) - mutt_any_key_to_continue (NULL); + mutt_any_key_to_continue (NULL); + mutt_buffy_check(1); } } }