aboutsummaryrefslogtreecommitdiff
path: root/test
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 /test
parent33b459b6724bd252c170b22e18a020d886791076 (diff)
downloadrneovim-365cf90efbc516ef2e83d0f8152eb7f7c3acbb3c.tar.gz
rneovim-365cf90efbc516ef2e83d0f8152eb7f7c3acbb3c.tar.bz2
rneovim-365cf90efbc516ef2e83d0f8152eb7f7c3acbb3c.zip
docs: Remove EBCDIC remnants
Diffstat (limited to 'test')
-rw-r--r--test/functional/legacy/026_execute_while_if_spec.lua18
1 files changed, 3 insertions, 15 deletions
diff --git a/test/functional/legacy/026_execute_while_if_spec.lua b/test/functional/legacy/026_execute_while_if_spec.lua
index 9acbf76673..ffe37819de 100644
--- a/test/functional/legacy/026_execute_while_if_spec.lua
+++ b/test/functional/legacy/026_execute_while_if_spec.lua
@@ -13,11 +13,7 @@ describe(':execute, :while and :if', function()
let i = 0
while i < 12
let i = i + 1
- if has("ebcdic")
- execute "normal o" . i . "\047"
- else
- execute "normal o" . i . "\033"
- endif
+ execute "normal o" . i . "\033"
if i % 2
normal Ax
if i == 9
@@ -28,21 +24,13 @@ describe(':execute, :while and :if', function()
else
let j = 9
while j > 0
- if has("ebcdic")
- execute "normal" j . "a" . j . "\x27"
- else
- execute "normal" j . "a" . j . "\x1b"
- endif
+ execute "normal" j . "a" . j . "\x1b"
let j = j - 1
endwhile
endif
endif
if i == 9
- if has("ebcdic")
- execute "normal Az\047"
- else
- execute "normal Az\033"
- endif
+ execute "normal Az\033"
endif
endwhile
unlet i j