From 5b8d84d2c2c10e74e9b4959871b4e4d04acdea18 Mon Sep 17 00:00:00 2001 From: Michael Reed Date: Fri, 16 Jan 2015 16:44:32 -0500 Subject: Remove '+float' references The corresponding code was already removed in b4ca3abc9f6676ea250e42c834716a5f66d8ec30 --- src/nvim/testdir/test65.in | 4 ---- src/nvim/testdir/test86.in | 20 ++++++-------------- src/nvim/testdir/test87.in | 20 ++++++-------------- src/nvim/version.c | 1 - 4 files changed, 12 insertions(+), 33 deletions(-) (limited to 'src') diff --git a/src/nvim/testdir/test65.in b/src/nvim/testdir/test65.in index ca53f27555..2fc5aacdcc 100644 --- a/src/nvim/testdir/test65.in +++ b/src/nvim/testdir/test65.in @@ -2,10 +2,6 @@ Test for floating point and logical operators. STARTTEST :so small.vim -:if !has("float") -: e! test.ok -: wq! test.out -:endif :" :$put =printf('%f', 123.456) :$put =printf('%e', 123.456) diff --git a/src/nvim/testdir/test86.in b/src/nvim/testdir/test86.in index 99102c4d89..958bd57e29 100644 --- a/src/nvim/testdir/test86.in +++ b/src/nvim/testdir/test86.in @@ -255,14 +255,10 @@ EOF :py f=l[0] :delfunction New :py ee('f(1, 2, 3)') -:if has('float') -: let l=[0.0] -: py l=vim.bindeval('l') -: py l.extend([0.0]) -: $put =string(l) -:else -: $put ='[0.0, 0.0]' -:endif +:let l=[0.0] +:py l=vim.bindeval('l') +:py l.extend([0.0]) +:$put =string(l) :let messages=[] :delfunction DictNew py <