]> granicus.if.org Git - vim/commitdiff
patch 8.2.2987: build failure with normal features v8.2.2987
authorBram Moolenaar <Bram@vim.org>
Sun, 13 Jun 2021 12:33:20 +0000 (14:33 +0200)
committerBram Moolenaar <Bram@vim.org>
Sun, 13 Jun 2021 12:33:20 +0000 (14:33 +0200)
Problem:    Build failure with normal features.
Solution:   Remove #define.

src/version.c
src/vim9execute.c

index 52e4a462b4ae4f573c1e4a16c9a54cb49f0c2f0f..2800cf4a337488be572901a873e732be72eb82ec 100644 (file)
@@ -750,6 +750,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    2987,
 /**/
     2986,
 /**/
index c1e40a68f48b6958dd7dd98b9a54ce66c08fd70e..04c1ee2f290d30cf69c319016084ad3275024a86 100644 (file)
@@ -738,13 +738,12 @@ call_ufunc(
     int                error;
     int                idx;
     int                did_emsg_before = did_emsg;
+    compiletype_T compile_type = CT_NONE;
+
 #ifdef FEAT_PROFILE
-    compiletype_T compile_type = do_profiling == PROF_YES
-                                && ufunc->uf_profiling ? CT_PROFILE : CT_NONE;
-#else
-# define compile_type CT_NONE
+    if (do_profiling == PROF_YES && ufunc->uf_profiling)
+       compile_type = CT_PROFILE;
 #endif
-
     if (func_needs_compiling(ufunc, compile_type)
                && compile_def_function(ufunc, FALSE, compile_type, NULL)
                                                                       == FAIL)