mirror of
https://github.com/vim/vim.git
synced 2025-07-26 11:04:33 -04:00
patch 8.0.0843: MS-Windows: compiler warning for signed/unsigned
Problem: MS-Windows: compiler warning for signed/unsigned. Solution: Add type cast. (Yasuhiro Matsumoto, closes #1912)
This commit is contained in:
parent
223896d3e9
commit
66cd19fef1
@ -968,7 +968,7 @@ terminal_loop(void)
|
|||||||
/* We don't know if the job can handle CTRL-C itself or not, this
|
/* We don't know if the job can handle CTRL-C itself or not, this
|
||||||
* may kill the shell instead of killing the command running in the
|
* may kill the shell instead of killing the command running in the
|
||||||
* shell. */
|
* shell. */
|
||||||
mch_stop_job(curbuf->b_term->tl_job, "quit")
|
mch_stop_job(curbuf->b_term->tl_job, (char_u *)"quit")
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
if (c == (termkey == 0 ? Ctrl_W : termkey))
|
if (c == (termkey == 0 ? Ctrl_W : termkey))
|
||||||
|
@ -769,6 +769,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 */
|
||||||
|
/**/
|
||||||
|
843,
|
||||||
/**/
|
/**/
|
||||||
842,
|
842,
|
||||||
/**/
|
/**/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user