From 0b75f7c97cd7f2529884c48dca8edb02abda4bc5 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Wed, 8 May 2019 22:28:46 +0200 Subject: patch 8.1.1301: when compiled with VIMDLL some messages are not shown Problem: When compiled with VIMDLL some messages are not shown. Solution: Set/reset gui.in_use and gui.starting as needed. (Ken Takata, closes #4361) --- src/gui_w32.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/gui_w32.c') diff --git a/src/gui_w32.c b/src/gui_w32.c index 7bea58e97..69212ebb7 100644 --- a/src/gui_w32.c +++ b/src/gui_w32.c @@ -4827,6 +4827,10 @@ ole_error(char *arg) { char buf[IOSIZE]; +# ifdef VIMDLL + gui.in_use = mch_is_gui_executable(); +# endif + /* Can't use emsg() here, we have not finished initialisation yet. */ vim_snprintf(buf, IOSIZE, _("E243: Argument not supported: \"-%s\"; Use the OLE version."), -- cgit v1.2.1