File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -1400,7 +1400,7 @@ static struct interval ambiguous[] =
14001400 * utf_char2cells() with different argument type for libvterm.
14011401 */
14021402 int
1403- utf_uint2cells (uint32_t c )
1403+ utf_uint2cells (UINT32_T c )
14041404{
14051405 return utf_char2cells ((int )c );
14061406}
@@ -2312,7 +2312,7 @@ utf_char2bytes(int c, char_u *buf)
23122312 * utf_iscomposing() with different argument type for libvterm.
23132313 */
23142314 int
2315- utf_iscomposing_uint (uint32_t c )
2315+ utf_iscomposing_uint (UINT32_T c )
23162316{
23172317 return utf_iscomposing ((int )c );
23182318}
Original file line number Diff line number Diff line change @@ -3757,7 +3757,7 @@ init_homedir(void)
37573757 * platforms, $HOMEDRIVE and $HOMEPATH are automatically defined for
37583758 * each user. Try constructing $HOME from these.
37593759 */
3760- if (var == NULL || * var == NULL )
3760+ if (var == NULL || * var == NUL )
37613761 {
37623762 char_u * homedrive , * homepath ;
37633763
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ int latin_char2len(int c);
1010int latin_char2bytes (int c , char_u * buf );
1111int latin_ptr2len (char_u * p );
1212int latin_ptr2len_len (char_u * p , int size );
13- int utf_uint2cells (uint32_t c );
13+ int utf_uint2cells (UINT32_T c );
1414int utf_char2cells (int c );
1515int latin_ptr2cells (char_u * p );
1616int utf_ptr2cells (char_u * p );
@@ -38,7 +38,7 @@ int utfc_ptr2len(char_u *p);
3838int utfc_ptr2len_len (char_u * p , int size );
3939int utf_char2len (int c );
4040int utf_char2bytes (int c , char_u * buf );
41- int utf_iscomposing_uint (uint32_t c );
41+ int utf_iscomposing_uint (UINT32_T c );
4242int utf_iscomposing (int c );
4343int utf_printable (int c );
4444int utf_class (int c );
Original file line number Diff line number Diff line change @@ -769,6 +769,8 @@ static char *(features[]) =
769769
770770static int included_patches [] =
771771{ /* Add new patch number below this line */
772+ /**/
773+ 1014 ,
772774/**/
773775 1013 ,
774776/**/
You can’t perform that action at this time.
0 commit comments