From: Bram Moolenaar Date: Tue, 23 Sep 2014 14:49:46 +0000 (+0200) Subject: updated for version 7.4.457 X-Git-Tag: v7.4.457 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1db60c47d9a0f14f4586702bfd8fccd8ea96f83f;p=vim updated for version 7.4.457 Problem: Using getchar() in an expression mapping may result in K_CURSORHOLD, which can't be recognized. Solution: Add the key. (Hirohito Higashi) --- diff --git a/src/misc2.c b/src/misc2.c index 1fe0e87cf..d421a00bc 100644 --- a/src/misc2.c +++ b/src/misc2.c @@ -2471,6 +2471,7 @@ static struct key_name_entry {K_SNR, (char_u *)"SNR"}, #endif {K_PLUG, (char_u *)"Plug"}, + {K_CURSORHOLD, (char_u *)"CursorHold"}, {0, NULL} }; diff --git a/src/version.c b/src/version.c index 50639fd64..bca37f54f 100644 --- a/src/version.c +++ b/src/version.c @@ -741,6 +741,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 457, /**/ 456, /**/