1
0
forked from aniani/vim

patch 8.2.2987: build failure with normal features

Problem:    Build failure with normal features.
Solution:   Remove #define.
This commit is contained in:
Bram Moolenaar 2021-06-13 14:33:20 +02:00
parent d9f31c13d2
commit 6d1792d408
2 changed files with 7 additions and 6 deletions

View File

@ -750,6 +750,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
2987,
/**/
2986,
/**/

View File

@ -738,13 +738,12 @@ call_ufunc(
int error;
int idx;
int did_emsg_before = did_emsg;
#ifdef FEAT_PROFILE
compiletype_T compile_type = do_profiling == PROF_YES
&& ufunc->uf_profiling ? CT_PROFILE : CT_NONE;
#else
# define compile_type CT_NONE
#endif
compiletype_T compile_type = CT_NONE;
#ifdef FEAT_PROFILE
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)