1
0
forked from aniani/vim

patch 9.0.0493: Perl test fails

Problem:    Perl test fails.
Solution:   Remove remaining FEAT_EVAL.
This commit is contained in:
Bram Moolenaar 2022-09-17 21:24:49 +01:00
parent 312af65d1a
commit 1e8009e34a
2 changed files with 2 additions and 2 deletions

View File

@ -1189,11 +1189,9 @@ perl_to_vim(SV *sv, typval_T *rettv)
case SVt_NULL:
break;
case SVt_NV: /* float */
#ifdef FEAT_FLOAT
rettv->v_type = VAR_FLOAT;
rettv->vval.v_float = SvNV(sv);
break;
#endif
case SVt_IV: /* integer */
if (!SvROK(sv)) { /* references should be string */
rettv->vval.v_number = SvIV(sv);

View File

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