mirror of
https://github.com/vim/vim.git
synced 2025-07-26 11:04:33 -04:00
patch 8.0.0690: compiler warning on non-Unix system
Problem: Compiler warning on non-Unix system. Solution: Add #ifdef. (John Marriott)
This commit is contained in:
parent
a693d0584b
commit
c2226845eb
@ -2524,7 +2524,9 @@ out_str_cf(char_u *s)
|
|||||||
{
|
{
|
||||||
if (s != NULL && *s)
|
if (s != NULL && *s)
|
||||||
{
|
{
|
||||||
|
#ifdef HAVE_TGETENT
|
||||||
char_u *p;
|
char_u *p;
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifdef FEAT_GUI
|
#ifdef FEAT_GUI
|
||||||
/* Don't use tputs() when GUI is used, ncurses crashes. */
|
/* Don't use tputs() when GUI is used, ncurses crashes. */
|
||||||
|
@ -764,6 +764,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 */
|
||||||
|
/**/
|
||||||
|
690,
|
||||||
/**/
|
/**/
|
||||||
689,
|
689,
|
||||||
/**/
|
/**/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user