diff --git a/src/if_perl.xs b/src/if_perl.xs index 8923926ddd..ab2917ae00 100644 --- a/src/if_perl.xs +++ b/src/if_perl.xs @@ -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); diff --git a/src/version.c b/src/version.c index 068369bfda..8493c732ef 100644 --- a/src/version.c +++ b/src/version.c @@ -699,6 +699,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 493, /**/ 492, /**/