mirror of
https://github.com/vim/vim.git
synced 2025-09-24 03:44:06 -04:00
updated for version 7.4.216
Problem: Compiler warnings. (Tony Mechelynck) Solution: Initialize variables, add #ifdef.
This commit is contained in:
@@ -565,7 +565,9 @@ int mch_rename __ARGS((const char *src, const char *dest));
|
|||||||
# endif
|
# endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define HAVE_DUP /* have dup() */
|
#ifndef HAVE_DUP
|
||||||
|
# define HAVE_DUP /* have dup() */
|
||||||
|
#endif
|
||||||
#define HAVE_ST_MODE /* have stat.st_mode */
|
#define HAVE_ST_MODE /* have stat.st_mode */
|
||||||
|
|
||||||
/* We have three kinds of ACL support. */
|
/* We have three kinds of ACL support. */
|
||||||
|
@@ -4185,7 +4185,7 @@ check_termcode(max_offset, buf, bufsize, buflen)
|
|||||||
{
|
{
|
||||||
#ifdef FEAT_MBYTE
|
#ifdef FEAT_MBYTE
|
||||||
int col;
|
int col;
|
||||||
int row_char;
|
int row_char = NUL;
|
||||||
#endif
|
#endif
|
||||||
j = 0;
|
j = 0;
|
||||||
extra = 0;
|
extra = 0;
|
||||||
|
@@ -734,6 +734,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 */
|
||||||
|
/**/
|
||||||
|
216,
|
||||||
/**/
|
/**/
|
||||||
215,
|
215,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user