From: Bram Moolenaar Date: Mon, 26 Jul 2021 19:10:11 +0000 (+0200) Subject: patch 8.2.3224: cannot call script-local function after :vim9cmd X-Git-Tag: v8.2.3224 X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=678b207fb111840fec1f0dc43910613ba106b90d;p=thirdparty%2Fvim.git patch 8.2.3224: cannot call script-local function after :vim9cmd Problem: Cannot call script-local function after :vim9cmd. (Christian J. Robinson) Solution: Skip over "123". --- diff --git a/src/eval.c b/src/eval.c index fc2266225a..8050bbbbe9 100644 --- a/src/eval.c +++ b/src/eval.c @@ -3326,7 +3326,8 @@ eval7t( : (evalarg->eval_flags & EVAL_EVALUATE); // Recognize in Vim9 script only. - if (in_vim9script() && **arg == '<' && eval_isnamec1((*arg)[1])) + if (in_vim9script() && **arg == '<' && eval_isnamec1((*arg)[1]) + && STRNCMP(*arg, "", 5) != 0) { ++*arg; ga_init2(&type_list, sizeof(type_T *), 10); diff --git a/src/testdir/test_vim9_cmd.vim b/src/testdir/test_vim9_cmd.vim index 23c5cfacf6..e6554e9688 100644 --- a/src/testdir/test_vim9_cmd.vim +++ b/src/testdir/test_vim9_cmd.vim @@ -14,6 +14,20 @@ def Test_vim9cmd() END CheckScriptSuccess(lines) assert_fails('vim9cmd', 'E1164:') + + lines =<< trim END + vim9script + def Foo() + g:found_bar = "bar" + enddef + nmap ,; :vim9cmd Foo() + END + CheckScriptSuccess(lines) + feedkeys(',;', 'xt') + assert_equal("bar", g:found_bar) + + nunmap ,; + unlet g:found_bar enddef def Test_edit_wildcards() diff --git a/src/version.c b/src/version.c index 0f181efdf4..190059e145 100644 --- a/src/version.c +++ b/src/version.c @@ -755,6 +755,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 3224, /**/ 3223, /**/ diff --git a/src/vim9compile.c b/src/vim9compile.c index 62d73733be..7d169f8c21 100644 --- a/src/vim9compile.c +++ b/src/vim9compile.c @@ -3562,14 +3562,18 @@ to_name_end(char_u *arg, int use_namespace) /* * Like to_name_end() but also skip over a list or dict constant. + * Also accept "123_Func". * This intentionally does not handle line continuation. */ char_u * to_name_const_end(char_u *arg) { - char_u *p = to_name_end(arg, TRUE); + char_u *p = arg; typval_T rettv; + if (STRNCMP(p, "", 5) == 0) + p = skipdigits(p + 5); + p = to_name_end(p, TRUE); if (p == arg && *arg == '[') {