summaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/main.c b/src/main.c
index 30014d4be..686fb1432 100644
--- a/src/main.c
+++ b/src/main.c
@@ -161,6 +161,20 @@ main
break;
}
#endif
+#ifdef MSWIN
+ // Need to find "-register" before loading any libraries.
+ for (i = 1; i < argc; ++i)
+ if (STRICMP(argv[i] + 1, "register") == 0
+ && (argv[i][0] == '-' || argv[i][0] == '/'))
+ {
+ found_register_arg = TRUE;
+ break;
+ }
+#endif
+
+ /*
+ * Various initialisations shared with tests.
+ */
common_init(&params);
#ifdef VIMDLL