File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -1894,7 +1894,7 @@ init_prompt(int cmdchar_todo)
18941894 || Insstart_orig .col != (int )STRLEN (prompt ))
18951895 {
18961896 Insstart .lnum = curwin -> w_cursor .lnum ;
1897- Insstart .col = STRLEN (prompt );
1897+ Insstart .col = ( int ) STRLEN (prompt );
18981898 Insstart_orig = Insstart ;
18991899 Insstart_textlen = Insstart .col ;
19001900 Insstart_blank_vcol = MAXCOL ;
@@ -1904,7 +1904,7 @@ init_prompt(int cmdchar_todo)
19041904 if (cmdchar_todo == 'A' )
19051905 coladvance ((colnr_T )MAXCOL );
19061906 if (cmdchar_todo == 'I' || curwin -> w_cursor .col <= (int )STRLEN (prompt ))
1907- curwin -> w_cursor .col = STRLEN (prompt );
1907+ curwin -> w_cursor .col = ( int ) STRLEN (prompt );
19081908 /* Make sure the cursor is in a valid position. */
19091909 check_cursor ();
19101910}
Original file line number Diff line number Diff line change @@ -761,6 +761,8 @@ static char *(features[]) =
761761
762762static int included_patches [] =
763763{ /* Add new patch number below this line */
764+ /**/
765+ 40 ,
764766/**/
765767 39 ,
766768/**/
You can’t perform that action at this time.
0 commit comments