summaryrefslogtreecommitdiffstats
path: root/src/testdir/test69.in
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-08-22 22:18:17 +0200
committerBram Moolenaar <Bram@vim.org>2019-08-22 22:18:17 +0200
commit64b4d73524b9a2304d89b87529cd8d3cef14b856 (patch)
tree23357c484e9ae935c37d16872d5468fd56bbb546 /src/testdir/test69.in
parent448262176b382c63bd2faa9a1354670a4eede36b (diff)
patch 8.1.1911: more functions can be used as methodsv8.1.1911
Problem: More functions can be used as methods. Solution: Make a few more functions usable as a method.
Diffstat (limited to 'src/testdir/test69.in')
-rw-r--r--src/testdir/test69.in15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/testdir/test69.in b/src/testdir/test69.in
index 2510c122ba..29dad8bb9d 100644
--- a/src/testdir/test69.in
+++ b/src/testdir/test69.in
@@ -165,21 +165,6 @@ ENDTEST
x
STARTTEST
-:let a = '.é.' " one char of two bytes
-:let b = '.é.' " normal e with composing char
-/^byteidx
-:put =string([byteidx(a, 0), byteidx(a, 1), byteidx(a, 2), byteidx(a, 3), byteidx(a, 4)])
-:put =string([byteidx(b, 0), byteidx(b, 1), byteidx(b, 2), byteidx(b, 3), byteidx(b, 4)])
-/^byteidxcomp
-:put =string([byteidxcomp(a, 0), byteidxcomp(a, 1), byteidxcomp(a, 2), byteidxcomp(a, 3), byteidxcomp(a, 4)])
-:let b = '.é.'
-:put =string([byteidxcomp(b, 0), byteidxcomp(b, 1), byteidxcomp(b, 2), byteidxcomp(b, 3), byteidxcomp(b, 4), byteidxcomp(b, 5)])
-ENDTEST
-
-byteidx
-byteidxcomp
-
-STARTTEST
/^substitute
:let y = substitute('123', '\zs', 'a', 'g') | put =y
ENDTEST