changeset 30314:d595be6d2186 v9.0.0493

patch 9.0.0493: Perl test fails Commit: https://github.com/vim/vim/commit/1e8009e34a68b0fa5a47ef485d88a0cb11ec5687 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Sep 17 21:24:49 2022 +0100 patch 9.0.0493: Perl test fails Problem: Perl test fails. Solution: Remove remaining FEAT_EVAL.
author Bram Moolenaar <Bram@vim.org>
date Sat, 17 Sep 2022 22:30:04 +0200
parents 5cb61e2a8fbd
children c95eb7dfc03f
files src/if_perl.xs src/version.c
diffstat 2 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- 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);
--- 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,