# HG changeset patch # User Bram Moolenaar # Date 1561499103 -7200 # Node ID 94cc7da54754e9988fd4036795109928c7f0348e # Parent 67aaa869f531794e933189eaba156c0f80eb7a40 patch 8.1.1594: may still start file dialog while exiting commit https://github.com/vim/vim/commit/2eed9bafa013f278ffe8bcd52489f90b11cf00e1 Author: Bram Moolenaar Date: Tue Jun 25 23:40:29 2019 +0200 patch 8.1.1594: may still start file dialog while exiting Problem: May still start file dialog while exiting. Solution: Ignore the "browse" modifier in another place when exiiting. (Ozaki Kiichi, closes #4582) diff --git a/src/ex_cmds.c b/src/ex_cmds.c --- a/src/ex_cmds.c +++ b/src/ex_cmds.c @@ -3818,7 +3818,7 @@ do_ecmd( else { #ifdef FEAT_BROWSE - if (cmdmod.browse) + if (cmdmod.browse && !exiting) { if ( # ifdef FEAT_GUI diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -778,6 +778,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1594, +/**/ 1593, /**/ 1592,