mirror of
https://github.com/vim/vim.git
synced 2025-09-23 03:43:49 -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)
|
||||
*mp_ptr = mp;
|
||||
if (local_ptr != NULL)
|
||||
#ifdef FEAT_LOCALMAP
|
||||
*local_ptr = local;
|
||||
#else
|
||||
*local_ptr = 0;
|
||||
#endif
|
||||
return mp->m_str;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user