0
0
mirror of https://github.com/vim/vim.git synced 2025-09-23 03:43:49 -04:00

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);