mirror of
https://github.com/vim/vim.git
synced 2025-09-24 03:44:06 -04:00
updated for version 7.3.033
Problem: Can't build without FEAT_LOCALMAP. Solution: Add an #ifdef. (John Marriott)
This commit is contained in:
@@ -5086,7 +5086,11 @@ check_map(keys, mode, exact, ign_mod, abbr, mp_ptr, local_ptr)
|
|||||||
if (mp_ptr != NULL)
|
if (mp_ptr != NULL)
|
||||||
*mp_ptr = mp;
|
*mp_ptr = mp;
|
||||||
if (local_ptr != NULL)
|
if (local_ptr != NULL)
|
||||||
|
#ifdef FEAT_LOCALMAP
|
||||||
*local_ptr = local;
|
*local_ptr = local;
|
||||||
|
#else
|
||||||
|
*local_ptr = 0;
|
||||||
|
#endif
|
||||||
return mp->m_str;
|
return mp->m_str;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -714,6 +714,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 */
|
||||||
|
/**/
|
||||||
|
33,
|
||||||
/**/
|
/**/
|
||||||
32,
|
32,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user