aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMichael Reed <m.reed@mykolab.com>2014-12-08 20:26:55 -0500
committerMichael Reed <m.reed@mykolab.com>2014-12-09 19:25:07 -0500
commit365cf90efbc516ef2e83d0f8152eb7f7c3acbb3c (patch)
tree7a28dde50807e83ea1871272ba321f3c424b365a /src
parent33b459b6724bd252c170b22e18a020d886791076 (diff)
downloadrneovim-365cf90efbc516ef2e83d0f8152eb7f7c3acbb3c.tar.gz
rneovim-365cf90efbc516ef2e83d0f8152eb7f7c3acbb3c.tar.bz2
rneovim-365cf90efbc516ef2e83d0f8152eb7f7c3acbb3c.zip
docs: Remove EBCDIC remnants
Diffstat (limited to 'src')
-rw-r--r--src/nvim/testdir/test14.in6
-rw-r--r--src/nvim/testdir/test17.in6
2 files changed, 2 insertions, 10 deletions
diff --git a/src/nvim/testdir/test14.in b/src/nvim/testdir/test14.in
index fb987ebc88..6ebec99af6 100644
--- a/src/nvim/testdir/test14.in
+++ b/src/nvim/testdir/test14.in
@@ -13,11 +13,7 @@ vaBiBD:?Bug?,/Piece/-2w! test.out
:s/i/~u~/
:s/o/~~~/
:.w >>test.out
-:if has("ebcdic")
-: let tt = "o\<C-V>193\<C-V>xc2\<C-V>o303 \<C-V>90a\<C-V>xfg\<C-V>o578\<Esc>"
-:else
-: let tt = "o\<C-V>65\<C-V>x42\<C-V>o103 \<C-V>33a\<C-V>xfg\<C-V>o78\<Esc>"
-:endif
+:let tt = "o\<C-V>65\<C-V>x42\<C-V>o103 \<C-V>33a\<C-V>xfg\<C-V>o78\<Esc>"
:exe "normal " . tt
:unlet tt
:.w >>test.out
diff --git a/src/nvim/testdir/test17.in b/src/nvim/testdir/test17.in
index bc542c7625..64534ec77c 100644
--- a/src/nvim/testdir/test17.in
+++ b/src/nvim/testdir/test17.in
@@ -4,11 +4,7 @@ Tests for:
STARTTEST
:so small.vim
-:if has("ebcdic")
-: set isfname=@,240-249,/,.,-,_,+,,,$,:,~,{,}
-:else
-: set isfname=@,48-57,/,.,-,_,+,,,$,:,~,{,}
-:endif
+:set isfname=@,48-57,/,.,-,_,+,,,$,:,~,{,}
:function! DeleteDirectory(dir)
: if has("win16") || has("win32") || has("win64") || has("dos16") || has("dos32")
: exec "silent !rmdir /Q /S " . a:dir