]> granicus.if.org Git - vim/commitdiff
patch 9.0.0792: MS-Windows: compiler complains about unused function v9.0.0792
authorBram Moolenaar <Bram@vim.org>
Tue, 18 Oct 2022 20:48:14 +0000 (21:48 +0100)
committerBram Moolenaar <Bram@vim.org>
Tue, 18 Oct 2022 20:48:14 +0000 (21:48 +0100)
Problem:    MS-Windows: compiler complains about unused function.
Solution:   Add #ifdef. (John Marriott)

src/os_win32.c
src/version.c

index db43c9e81094dfb2194f1a886d9f517c4d8a517e..5c845c638eccdfe332d9fb3e4dc4d3ef78b2f5b0 100644 (file)
@@ -1231,7 +1231,7 @@ mch_bevalterm_changed(void)
 }
 # endif
 
-
+#ifdef VIMDLL
 /*
  * Win32 console mouse scroll event handler.
  * Loosely based on the _OnMouseWheel() function in gui_w32.c
@@ -1324,6 +1324,7 @@ decode_mouse_wheel(MOUSE_EVENT_RECORD *pmer)
 
     return;
 }
+#endif
 
 /*
  * Decode a MOUSE_EVENT.  If it's a valid event, return MOUSE_LEFT,
index 4d5134511eb3d57f260a1c51f9ddccb304c1f193..8111f85049dfdb3279603ffe0b6f6affe9f8143e 100644 (file)
@@ -695,6 +695,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    792,
 /**/
     791,
 /**/