]> granicus.if.org Git - vim/commitdiff
patch 9.0.0929: build failure with tiny version v9.0.0929
authorBram Moolenaar <Bram@vim.org>
Wed, 23 Nov 2022 14:33:01 +0000 (14:33 +0000)
committerBram Moolenaar <Bram@vim.org>
Wed, 23 Nov 2022 14:33:01 +0000 (14:33 +0000)
Problem:    Build failure with tiny version. (Tony Mechelynck)
Solution:   Add #ifdef.

src/version.c
src/window.c

index bb8dd6396a04cc99772f0c1bb7d821b55057f88f..42e7200ab4aed07a31bcea992dc4bd9a42267a5c 100644 (file)
@@ -695,6 +695,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    929,
 /**/
     928,
 /**/
index 6816697de39411115a684f956f29d967381ce507..97cc77035f954ef9365f0ba469bd54fcf56b08f4 100644 (file)
@@ -3134,7 +3134,11 @@ may_trigger_win_scrolled_resized(void)
 #endif
     }
 
-    if (trigger_scroll && scroll_dict != NULL)
+    if (trigger_scroll
+#ifdef FEAT_EVAL
+           && scroll_dict != NULL
+#endif
+           )
     {
 #ifdef FEAT_EVAL
        save_v_event_T  save_v_event;