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:
@@ -1189,11 +1189,9 @@ perl_to_vim(SV *sv, typval_T *rettv)
|
|||||||
case SVt_NULL:
|
case SVt_NULL:
|
||||||
break;
|
break;
|
||||||
case SVt_NV: /* float */
|
case SVt_NV: /* float */
|
||||||
#ifdef FEAT_FLOAT
|
|
||||||
rettv->v_type = VAR_FLOAT;
|
rettv->v_type = VAR_FLOAT;
|
||||||
rettv->vval.v_float = SvNV(sv);
|
rettv->vval.v_float = SvNV(sv);
|
||||||
break;
|
break;
|
||||||
#endif
|
|
||||||
case SVt_IV: /* integer */
|
case SVt_IV: /* integer */
|
||||||
if (!SvROK(sv)) { /* references should be string */
|
if (!SvROK(sv)) { /* references should be string */
|
||||||
rettv->vval.v_number = SvIV(sv);
|
rettv->vval.v_number = SvIV(sv);
|
||||||
|
@@ -699,6 +699,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
493,
|
||||||
/**/
|
/**/
|
||||||
492,
|
492,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user