diff src/structs.h @ 5041:558c815e1a38 v7.3.1264

updated for version 7.3.1264 Problem: Missing m_nowait. Solution: Include missing part of the patch.
author Bram Moolenaar <bram@vim.org>
date Sat, 29 Jun 2013 14:47:22 +0200
parents 7aa4e0822dec
children 11d0c6df1d7b
line wrap: on
line diff
--- 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 */