comparison src/ex_cmds.c @ 17190:94cc7da54754 v8.1.1594

patch 8.1.1594: may still start file dialog while exiting commit https://github.com/vim/vim/commit/2eed9bafa013f278ffe8bcd52489f90b11cf00e1 Author: Bram Moolenaar <Bram@vim.org> 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)
author Bram Moolenaar <Bram@vim.org>
date Tue, 25 Jun 2019 23:45:03 +0200
parents 278583ff5e44
children ce35cdbe9f74
comparison
equal deleted inserted replaced
17189:67aaa869f531 17190:94cc7da54754
3816 other_file = TRUE; 3816 other_file = TRUE;
3817 } 3817 }
3818 else 3818 else
3819 { 3819 {
3820 #ifdef FEAT_BROWSE 3820 #ifdef FEAT_BROWSE
3821 if (cmdmod.browse) 3821 if (cmdmod.browse && !exiting)
3822 { 3822 {
3823 if ( 3823 if (
3824 # ifdef FEAT_GUI 3824 # ifdef FEAT_GUI
3825 !gui.in_use && 3825 !gui.in_use &&
3826 # endif 3826 # endif