From 6b1ecf78dde6a629b97ddaeeddf94d58e6aa60e9 Mon Sep 17 00:00:00 2001 From: Ian Zimmerman Date: Thu, 5 Jan 2017 16:18:16 -0800 Subject: [PATCH] Do a buffy check after shell escape Closes #284 --- commands.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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); } } } -- 2.50.1