]> granicus.if.org Git - vim/commitdiff
patch 8.0.1415: warning for unused function without timers feature v8.0.1415
authorBram Moolenaar <Bram@vim.org>
Tue, 19 Dec 2017 18:42:41 +0000 (19:42 +0100)
committerBram Moolenaar <Bram@vim.org>
Tue, 19 Dec 2017 18:42:41 +0000 (19:42 +0100)
Problem:    Warning for unused function without timers feature.
Solution:   Add #ifdef. (John Marriott)

src/gui.c
src/version.c

index 916c9befc6efaa40c536e92f2723e7b5c1c5ff58..3456f9246de43b6e58bac4969a8fe11c20baef10 100644 (file)
--- a/src/gui.c
+++ b/src/gui.c
@@ -2885,6 +2885,7 @@ gui_insert_lines(int row, int count)
     }
 }
 
+#ifdef FEAT_TIMERS
 /*
  * Passed to ui_wait_for_chars_or_timer(), ignoring extra arguments.
  */
@@ -2896,6 +2897,7 @@ gui_wait_for_chars_3(
 {
     return gui_mch_wait_for_chars(wtime);
 }
+#endif
 
 /*
  * Returns OK if a character was found to be available within the given time,
index cba8fcfc026535074ab2595a3c85b8164a7915d7..7b2f89a77c9862fe6259d61d199a9bd94ef8ef3c 100644 (file)
@@ -771,6 +771,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    1415,
 /**/
     1414,
 /**/