File tree Expand file tree Collapse file tree 3 files changed +5
-2
lines changed
Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -3392,7 +3392,7 @@ set_one_cmd_context(xp, buff)
33923392 /* Find start of last argument (argument just before cursor): */
33933393 p = buff ;
33943394 xp -> xp_pattern = p ;
3395- len = STRLEN (buff );
3395+ len = ( int ) STRLEN (buff );
33963396 while (* p && p < buff + len )
33973397 {
33983398 if (* p == ' ' || * p == TAB )
Original file line number Diff line number Diff line change @@ -4621,7 +4621,8 @@ current_search(count, forward)
46214621 {
46224622 /* searching backwards, so set pos to last line and col */
46234623 pos .lnum = curwin -> w_buffer -> b_ml .ml_line_count ;
4624- pos .col = STRLEN (ml_get (curwin -> w_buffer -> b_ml .ml_line_count ));
4624+ pos .col = (colnr_T )STRLEN (
4625+ ml_get (curwin -> w_buffer -> b_ml .ml_line_count ));
46254626 }
46264627 }
46274628
Original file line number Diff line number Diff line change @@ -714,6 +714,8 @@ static char *(features[]) =
714714
715715static int included_patches [] =
716716{ /* Add new patch number below this line */
717+ /**/
718+ 621 ,
717719/**/
718720 620 ,
719721/**/
You can’t perform that action at this time.
0 commit comments