mirror of
https://github.com/vim/vim.git
synced 2025-09-30 04:44:14 -04:00
patch 7.4.1044
Problem: Can't build without the +eval feature. Solution: Add #ifdef.
This commit is contained in:
@@ -7205,6 +7205,7 @@ cursor_pos_info(dict)
|
|||||||
p_shm = p;
|
p_shm = p;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
#if defined(FEAT_EVAL)
|
||||||
if (dict != NULL)
|
if (dict != NULL)
|
||||||
{
|
{
|
||||||
dict_add_nr_str(dict, "words", (long)word_count, NULL);
|
dict_add_nr_str(dict, "words", (long)word_count, NULL);
|
||||||
@@ -7223,4 +7224,5 @@ cursor_pos_info(dict)
|
|||||||
dict_add_nr_str(dict, "cursor_words", (long)word_count_cursor, NULL);
|
dict_add_nr_str(dict, "cursor_words", (long)word_count_cursor, NULL);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
@@ -741,6 +741,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 */
|
||||||
|
/**/
|
||||||
|
1044,
|
||||||
/**/
|
/**/
|
||||||
1043,
|
1043,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user