From 113c2c9349b70353dc5d4878f7576b0863635df4 Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Sat, 26 Oct 2024 22:38:58 +0300 Subject: [PATCH] Fix bootstrap on MS-Windows * src/w32uniscribe.c (syms_of_w32uniscribe): Don't call 'syms_of_w32dwrite' here... * src/emacs.c (main): ...call it here. Reported by Andy Moreton . (cherry picked from commit 02510606f6d0e431e36634b8290e648b3a47af18) --- src/emacs.c | 1 + src/w32uniscribe.c | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/src/emacs.c b/src/emacs.c index b0d1f2f53e8..bdd9eee10c4 100644 --- a/src/emacs.c +++ b/src/emacs.c @@ -2472,6 +2472,7 @@ Using an Emacs configured with --with-x-toolkit=lucid does not have this problem #ifdef HAVE_W32NOTIFY syms_of_w32notify (); #endif /* HAVE_W32NOTIFY */ + syms_of_w32dwrite (); #endif /* WINDOWSNT */ syms_of_xwidget (); diff --git a/src/w32uniscribe.c b/src/w32uniscribe.c index d6db1e9e7db..66d27b81b9e 100644 --- a/src/w32uniscribe.c +++ b/src/w32uniscribe.c @@ -1512,7 +1512,6 @@ static void syms_of_w32uniscribe_for_pdumper (void); void syms_of_w32uniscribe (void) { - syms_of_w32dwrite (); pdumper_do_now_and_after_load (syms_of_w32uniscribe_for_pdumper); } -- 2.39.5