]> granicus.if.org Git - vim/commitdiff
patch 9.0.0689: compiler warning for unused function v9.0.0689
authorBram Moolenaar <Bram@vim.org>
Fri, 7 Oct 2022 21:46:24 +0000 (22:46 +0100)
committerBram Moolenaar <Bram@vim.org>
Fri, 7 Oct 2022 21:46:24 +0000 (22:46 +0100)
Problem:    Compiler warning for unused function.
Solution:   Add #ifdef. (John Marriott)

src/version.c
src/vim9compile.c

index 2108099bb0f58767096b59869af514cd4e7874c1..1d60238469b2bc17842ef6b434709597c69c07b9 100644 (file)
@@ -699,6 +699,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    689,
 /**/
     688,
 /**/
index 9f36dc951714a9e40cf8aac9acd126ccf67d32c1..468c3846d8da54fbee25b535f1f31458c3c4d177 100644 (file)
@@ -2682,6 +2682,7 @@ check_args_shadowing(ufunc_T *ufunc, cctx_T *cctx)
     return r;
 }
 
+#ifdef HAS_MESSAGE_WINDOW
 /*
  * Get a count before a command.  Can only be a number.
  * Returns zero if there is no count.
@@ -2707,6 +2708,7 @@ get_cmd_count(char_u *line, exarg_T *eap)
     }
     return atol((char *)p);
 }
+#endif
 
 /*
  * Get the compilation type that should be used for "ufunc".