mirror of
https://github.com/vim/vim.git
synced 2025-09-29 04:34:16 -04:00
patch 9.0.0929: build failure with tiny version
Problem: Build failure with tiny version. (Tony Mechelynck) Solution: Add #ifdef.
This commit is contained in:
@@ -695,6 +695,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 */
|
||||||
|
/**/
|
||||||
|
929,
|
||||||
/**/
|
/**/
|
||||||
928,
|
928,
|
||||||
/**/
|
/**/
|
||||||
|
@@ -3134,7 +3134,11 @@ may_trigger_win_scrolled_resized(void)
|
|||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
if (trigger_scroll && scroll_dict != NULL)
|
if (trigger_scroll
|
||||||
|
#ifdef FEAT_EVAL
|
||||||
|
&& scroll_dict != NULL
|
||||||
|
#endif
|
||||||
|
)
|
||||||
{
|
{
|
||||||
#ifdef FEAT_EVAL
|
#ifdef FEAT_EVAL
|
||||||
save_v_event_T save_v_event;
|
save_v_event_T save_v_event;
|
||||||
|
Reference in New Issue
Block a user