aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorEli Zaretskii2024-10-26 22:38:58 +0300
committerEli Zaretskii2024-10-26 22:38:58 +0300
commit02510606f6d0e431e36634b8290e648b3a47af18 (patch)
treeb1e2be79fd94c792502642b8f23c0667fe085d61 /src
parente0b21b6c4de4d7f0b7ad9ae112755435f501835e (diff)
downloademacs-02510606f6d0e431e36634b8290e648b3a47af18.tar.gz
emacs-02510606f6d0e431e36634b8290e648b3a47af18.zip
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 <andrewjmoreton@gmail.com>.
Diffstat (limited to 'src')
-rw-r--r--src/emacs.c1
-rw-r--r--src/w32uniscribe.c1
2 files changed, 1 insertions, 1 deletions
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
2472#ifdef HAVE_W32NOTIFY 2472#ifdef HAVE_W32NOTIFY
2473 syms_of_w32notify (); 2473 syms_of_w32notify ();
2474#endif /* HAVE_W32NOTIFY */ 2474#endif /* HAVE_W32NOTIFY */
2475 syms_of_w32dwrite ();
2475#endif /* WINDOWSNT */ 2476#endif /* WINDOWSNT */
2476 2477
2477 syms_of_xwidget (); 2478 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);
1512void 1512void
1513syms_of_w32uniscribe (void) 1513syms_of_w32uniscribe (void)
1514{ 1514{
1515 syms_of_w32dwrite ();
1516 pdumper_do_now_and_after_load (syms_of_w32uniscribe_for_pdumper); 1515 pdumper_do_now_and_after_load (syms_of_w32uniscribe_for_pdumper);
1517} 1516}
1518 1517