From cbc67723bde3c05e4bc0788457961b41304576ee Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Thu, 22 May 2014 14:19:56 +0200 Subject: [PATCH] updated for version 7.4.298 Problem: Can't have a funcref start with "t:". Solution: Add "t" to the list of accepted names. (Yukihiro Nakadaira) --- src/eval.c | 3 ++- src/version.c | 2 ++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/src/eval.c b/src/eval.c index 6ba2dd8aa..bc7f22ad7 100644 --- a/src/eval.c +++ b/src/eval.c @@ -21064,7 +21064,8 @@ var_check_func_name(name, new_var) char_u *name; /* points to start of variable name */ int new_var; /* TRUE when creating the variable */ { - if (!(vim_strchr((char_u *)"wbs", name[0]) != NULL && name[1] == ':') + /* Allow for w: b: s: and t:. */ + if (!(vim_strchr((char_u *)"wbst", name[0]) != NULL && name[1] == ':') && !ASCII_ISUPPER((name[0] != NUL && name[1] == ':') ? name[2] : name[0])) { diff --git a/src/version.c b/src/version.c index 40e967dfe..1a1755efa 100644 --- a/src/version.c +++ b/src/version.c @@ -734,6 +734,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 298, /**/ 297, /**/ -- 2.50.1