patch 9.0.1330: handling new value of an option has a long "else if" chain
Problem: Handling new value of an option has a long "else if" chain.
Solution: Use a function pointer. (Yegappan Lakshmanan, closes #12015)
diff --git a/src/if_mzsch.c b/src/if_mzsch.c
index 7492237..39d1530 100644
--- a/src/if_mzsch.c
+++ b/src/if_mzsch.c
@@ -886,13 +886,15 @@
timer_id = 0;
}
- void
-mzvim_reset_timer(void)
+ char *
+did_set_mzquantum(void)
{
+ // reset timer
if (timer_id != 0)
remove_timer();
if (mz_threads_allow && p_mzq > 0 && gui.in_use)
setup_timer();
+ return NULL;
}
#endif // MZSCHEME_GUI_THREADS