From 33460000f92fbfd054937aa3555f6cf27567716d Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Fri, 27 Nov 2015 10:01:40 +0200 Subject: [PATCH] Unbreak the Cygwin w32 build * src/emacs.c (main): Call w32_init_main_thread in the Cygwin w32 build as well. Reported by Andy Moreton . --- src/emacs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/emacs.c b/src/emacs.c index c411da6a5da..48ff20a11ce 100644 --- a/src/emacs.c +++ b/src/emacs.c @@ -760,11 +760,11 @@ main (int argc, char **argv) to have non-stub implementations of APIs we need to convert file names between UTF-8 and the system's ANSI codepage. */ maybe_load_unicows_dll (); +#endif /* This has to be done before module_init is called below, so that the latter could use the thread ID of the main thread. */ w32_init_main_thread (); #endif -#endif #ifdef RUN_TIME_REMAP if (initialized) -- 2.39.5