mirror of
https://github.com/vim/vim.git
synced 2025-09-23 03:43:49 -04:00
updated for version 7.3.682
Problem: Compiler complains about incompatible types. Solution: Remove type casts. (hint by Danek Duvall)
This commit is contained in:
@@ -4194,8 +4194,8 @@ ins_compl_get_exp(ini)
|
|||||||
ins_buf->b_fname == NULL
|
ins_buf->b_fname == NULL
|
||||||
? buf_spname(ins_buf)
|
? buf_spname(ins_buf)
|
||||||
: ins_buf->b_sfname == NULL
|
: ins_buf->b_sfname == NULL
|
||||||
? (char *)ins_buf->b_fname
|
? ins_buf->b_fname
|
||||||
: (char *)ins_buf->b_sfname);
|
: ins_buf->b_sfname);
|
||||||
(void)msg_trunc_attr(IObuff, TRUE, hl_attr(HLF_R));
|
(void)msg_trunc_attr(IObuff, TRUE, hl_attr(HLF_R));
|
||||||
}
|
}
|
||||||
else if (*e_cpt == NUL)
|
else if (*e_cpt == NUL)
|
||||||
|
@@ -719,6 +719,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
682,
|
||||||
/**/
|
/**/
|
||||||
681,
|
681,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user