forked from aniani/vim
updated for version 7.3.1264
Problem: Missing m_nowait. Solution: Include missing part of the patch.
This commit is contained in:
@@ -1004,12 +1004,13 @@ struct mapblock
|
|||||||
{
|
{
|
||||||
mapblock_T *m_next; /* next mapblock in list */
|
mapblock_T *m_next; /* next mapblock in list */
|
||||||
char_u *m_keys; /* mapped from, lhs */
|
char_u *m_keys; /* mapped from, lhs */
|
||||||
int m_keylen; /* strlen(m_keys) */
|
|
||||||
char_u *m_str; /* mapped to, rhs */
|
char_u *m_str; /* mapped to, rhs */
|
||||||
char_u *m_orig_str; /* rhs as entered by the user */
|
char_u *m_orig_str; /* rhs as entered by the user */
|
||||||
|
int m_keylen; /* strlen(m_keys) */
|
||||||
int m_mode; /* valid mode */
|
int m_mode; /* valid mode */
|
||||||
int m_noremap; /* if non-zero no re-mapping for m_str */
|
int m_noremap; /* if non-zero no re-mapping for m_str */
|
||||||
char m_silent; /* <silent> used, don't echo commands */
|
char m_silent; /* <silent> used, don't echo commands */
|
||||||
|
char m_nowait; /* <nowait> used */
|
||||||
#ifdef FEAT_EVAL
|
#ifdef FEAT_EVAL
|
||||||
char m_expr; /* <expr> used, m_str is an expression */
|
char m_expr; /* <expr> used, m_str is an expression */
|
||||||
scid_T m_script_ID; /* ID of script where map was defined */
|
scid_T m_script_ID; /* ID of script where map was defined */
|
||||||
|
@@ -728,6 +728,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 */
|
||||||
|
/**/
|
||||||
|
1264,
|
||||||
/**/
|
/**/
|
||||||
1263,
|
1263,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user