]> granicus.if.org Git - neomutt/commitdiff
Do a buffy check after shell escape
authorIan Zimmerman <itz@primate.net>
Fri, 6 Jan 2017 00:18:16 +0000 (16:18 -0800)
committerRichard Russon <rich@flatcap.org>
Mon, 23 Jan 2017 16:19:13 +0000 (16:19 +0000)
Closes #284

commands.c

index d277170969a2d9226dbeca203f8dc71bb5394239..8ae96ac214b39ebd9234ade723e87d0e614a721b 100644 (file)
@@ -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);
     }
   }
 }