patch 9.0.1341: build error with mzscheme but without GUI v9.0.1341
authorK.Takata <kentkt@csc.jp>
Wed, 22 Feb 2023 13:14:36 +0000 (13:14 +0000)
committerBram Moolenaar <Bram@vim.org>
Wed, 22 Feb 2023 13:14:36 +0000 (13:14 +0000)
Problem:    Build error with mzscheme but without GUI.
Solution:   Adjust #ifdefs. (Ken Takata, closes #12042)  Also fix function
            argument.

src/if_mzsch.c
src/proto/if_mzsch.pro
src/version.c

index 39d1530fe5539ad0e53864e2fbf7cd1b44a58874..e4ebf29f490f155b1f4fa2525f24dbd81d2e0364 100644 (file)
@@ -886,19 +886,21 @@ remove_timer(void)
     timer_id = 0;
 }
 
+#endif // MZSCHEME_GUI_THREADS
+
     char *
-did_set_mzquantum(void)
+did_set_mzquantum(optset_T *args UNUSED)
 {
+#if defined(MZSCHEME_GUI_THREADS)
     // reset timer
     if (timer_id != 0)
        remove_timer();
     if (mz_threads_allow && p_mzq > 0 && gui.in_use)
        setup_timer();
+#endif
     return NULL;
 }
 
-#endif // MZSCHEME_GUI_THREADS
-
     static void
 notify_multithread(int on)
 {
index 00bbf3c0580b32c26fbe0fa249e96a35c67f4d54..26ffa77c8705614127915c522b0508bcf1fcbce2 100644 (file)
@@ -1,7 +1,7 @@
 /* if_mzsch.c */
 int mzscheme_enabled(int verbose);
 void mzvim_check_threads(void);
-char *did_set_mzquantum(void);
+char *did_set_mzquantum(optset_T *args);
 void mzscheme_end(void);
 int mzscheme_main(void);
 void mzscheme_buffer_free(buf_T *buf);
index c541e6f7ff81dfdf3d62a55a8957c142364cfb9b..56d02b3e4bd2504406464c91edf9dcb09fab739d 100644 (file)
@@ -695,6 +695,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    1341,
 /**/
     1340,
 /**/