summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/if_perl.xs2
-rw-r--r--src/version.c2
2 files changed, 2 insertions, 2 deletions
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
@@ -700,6 +700,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 493,
+/**/
492,
/**/
491,