diff src/globals.h @ 24563:30ad18017e1c v8.2.2821

patch 8.2.2821: MS-Windows: unnessarily loading libraries when registering OLE Commit: https://github.com/vim/vim/commit/3d0e7a956afb6f913466e96bd462eff0c92ad4c6 Author: Bram Moolenaar <Bram@vim.org> Date: Sat May 1 17:46:03 2021 +0200 patch 8.2.2821: MS-Windows: unnessarily loading libraries when registering OLE Problem: MS-Windows: unnessarily loading libraries when registering OLE. Solution: Skip loading libraries when invoked with "-register".
author Bram Moolenaar <Bram@vim.org>
date Sat, 01 May 2021 18:00:06 +0200
parents a878e5e892cf
children 07b3d21a8b4b
line wrap: on
line diff
--- a/src/globals.h
+++ b/src/globals.h
@@ -1311,6 +1311,7 @@ EXTERN int  wild_menu_showing INIT(= 0);
 #ifdef MSWIN
 EXTERN char_u	toupper_tab[256];	// table for toupper()
 EXTERN char_u	tolower_tab[256];	// table for tolower()
+EXTERN int	found_register_arg INIT(= FALSE);
 #endif
 
 #ifdef FEAT_LINEBREAK