comparison src/testdir/test_marks.vim @ 15607:2dcaa860e3fc v8.1.0811

patch 8.1.0811: too many #ifdefs commit https://github.com/vim/vim/commit/30276f2beb248557c6b33cd5418bca8b7084b0a5 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Jan 24 17:59:39 2019 +0100 patch 8.1.0811: too many #ifdefs Problem: Too many #ifdefs. Solution: Graduate FEAT_MBYTE, the final chapter.
author Bram Moolenaar <Bram@vim.org>
date Thu, 24 Jan 2019 18:00:07 +0100
parents 63b02fcf1361
children 6839f99d2269
comparison
equal deleted inserted replaced
15606:50e09796a00a 15607:2dcaa860e3fc
120 call delete('Xtwo') 120 call delete('Xtwo')
121 %bwipe 121 %bwipe
122 endfunc 122 endfunc
123 123
124 func Test_marks_cmd_multibyte() 124 func Test_marks_cmd_multibyte()
125 if !has('multi_byte')
126 return
127 endif
128 new Xone 125 new Xone
129 call setline(1, [repeat('á', &columns)]) 126 call setline(1, [repeat('á', &columns)])
130 norm! ma 127 norm! ma
131 128
132 let a = split(execute('marks a'), "\n") 129 let a = split(execute('marks a'), "\n")