summaryrefslogtreecommitdiff
path: root/src/structs.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2013-06-29 14:47:22 +0200
committerBram Moolenaar <Bram@vim.org>2013-06-29 14:47:22 +0200
commitf3fe39276039f78beb7ce5a2ea21c445bee70545 (patch)
treeece7d9e335db325fa32d0bdc6967c0d02c58a102 /src/structs.h
parent4a4607036553448cd03abcabc8fdc14e9e2f4687 (diff)
downloadvim-git-f3fe39276039f78beb7ce5a2ea21c445bee70545.tar.gz
updated for version 7.3.1264v7.3.1264
Problem: Missing m_nowait. Solution: Include missing part of the patch.
Diffstat (limited to 'src/structs.h')
-rw-r--r--src/structs.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/structs.h b/src/structs.h
index 96435eda7..1fc91dc9b 100644
--- a/src/structs.h
+++ b/src/structs.h
@@ -1004,12 +1004,13 @@ struct mapblock
{
mapblock_T *m_next; /* next mapblock in list */
char_u *m_keys; /* mapped from, lhs */
- int m_keylen; /* strlen(m_keys) */
char_u *m_str; /* mapped to, rhs */
char_u *m_orig_str; /* rhs as entered by the user */
+ int m_keylen; /* strlen(m_keys) */
int m_mode; /* valid mode */
int m_noremap; /* if non-zero no re-mapping for m_str */
char m_silent; /* <silent> used, don't echo commands */
+ char m_nowait; /* <nowait> used */
#ifdef FEAT_EVAL
char m_expr; /* <expr> used, m_str is an expression */
scid_T m_script_ID; /* ID of script where map was defined */