mirror of
https://github.com/vim/vim.git
synced 2025-07-26 11:04:33 -04:00
patch 8.0.0691: compiler warning without the linebreak feature
Problem: Compiler warning without the linebreak feature. Solution: Add #ifdef. (John Marriott)
This commit is contained in:
parent
c2226845eb
commit
a83fe75ca7
@ -7329,7 +7329,9 @@ oneleft(void)
|
|||||||
#ifdef FEAT_VIRTUALEDIT
|
#ifdef FEAT_VIRTUALEDIT
|
||||||
if (virtual_active())
|
if (virtual_active())
|
||||||
{
|
{
|
||||||
|
# ifdef FEAT_LINEBREAK
|
||||||
int width;
|
int width;
|
||||||
|
# endif
|
||||||
int v = getviscol();
|
int v = getviscol();
|
||||||
|
|
||||||
if (v == 0)
|
if (v == 0)
|
||||||
|
@ -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 */
|
||||||
|
/**/
|
||||||
|
691,
|
||||||
/**/
|
/**/
|
||||||
690,
|
690,
|
||||||
/**/
|
/**/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user