We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a39379 commit c7bd2f0Copy full SHA for c7bd2f0
src/insexpand.c
@@ -643,7 +643,7 @@ ins_compl_infercase_gettext(
643
if (ga_grow(&gap, IOSIZE) == FAIL)
644
return (char_u *)"[failed]";
645
STRCPY(gap.ga_data, IObuff);
646
- gap.ga_len = STRLEN(IObuff);
+ gap.ga_len = (int)STRLEN(IObuff);
647
}
648
else if (has_mbyte)
649
p += (*mb_char2bytes)(wca[i++], p);
src/version.c
@@ -735,6 +735,8 @@ static char *(features[]) =
735
736
static int included_patches[] =
737
{ /* Add new patch number below this line */
738
+/**/
739
+ 54,
740
/**/
741
53,
742
0 commit comments