summaryrefslogtreecommitdiff
path: root/src/testdir/test_xxd.vim
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-01-09 23:01:02 +0100
committerBram Moolenaar <Bram@vim.org>2019-01-09 23:01:02 +0100
commit1e1153600c0377472d62cc553173fe555ddcf5a7 (patch)
tree6b048ad52538ede86b31960d3c2f963411925c73 /src/testdir/test_xxd.vim
parentc46af534102c65b43912311d67f55f5049e5ef7a (diff)
downloadvim-git-1e1153600c0377472d62cc553173fe555ddcf5a7.tar.gz
patch 8.1.0711: test files still use function!v8.1.0711
Problem: Test files still use function!. Solution: Remove the exclamation mark. Fix overwriting a function.
Diffstat (limited to 'src/testdir/test_xxd.vim')
-rw-r--r--src/testdir/test_xxd.vim6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/testdir/test_xxd.vim b/src/testdir/test_xxd.vim
index 6e6789329..4538790f3 100644
--- a/src/testdir/test_xxd.vim
+++ b/src/testdir/test_xxd.vim
@@ -7,17 +7,17 @@ else
let s:xxd_cmd = $XXD
endif
-func! PrepareBuffer(lines)
+func PrepareBuffer(lines)
new
call append(0, a:lines)
$d
endfunc
-func! s:Mess(counter)
+func s:Mess(counter)
return printf("Failed xxd test %d:", a:counter)
endfunc
-func! Test_xxd()
+func Test_xxd()
call PrepareBuffer(range(1,30))
set ff=unix
w XXDfile