File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -126,15 +126,12 @@ func Test_marks_cmd_multibyte()
126126 return
127127 endif
128128 new Xone
129- call setline (1 , [' ááááááááááááááááááááááááááááááááááááááááááááááááááááááááááááááááááááááááááááááááá ' ])
129+ call setline (1 , [repeat ( ' á ' , & columns ) ])
130130 norm! ma
131131
132132 let a = split (execute (' marks a' ), " \n " )
133133 call assert_equal (2 , len (a ))
134- let expected = ' a 1 0 '
135- while strwidth (expected) < &columns - 1
136- let expected .= ' á'
137- endwhile
134+ let expected = ' a 1 0 ' . repeat (' á' , &columns - 16 )
138135 call assert_equal (expected, a [1 ])
139136
140137 bwipe!
Original file line number Diff line number Diff line change @@ -789,6 +789,8 @@ static char *(features[]) =
789789
790790static int included_patches [] =
791791{ /* Add new patch number below this line */
792+ /**/
793+ 175 ,
792794/**/
793795 174 ,
794796/**/
You can’t perform that action at this time.
0 commit comments