]> granicus.if.org Git - vim/commitdiff
patch 8.2.4914: string interpolation in :def function may fail v8.2.4914
authorBram Moolenaar <Bram@vim.org>
Sun, 8 May 2022 15:37:07 +0000 (16:37 +0100)
committerBram Moolenaar <Bram@vim.org>
Sun, 8 May 2022 15:37:07 +0000 (16:37 +0100)
Problem:    String interpolation in :def function may fail.
Solution:   Do not terminate the expression. (closes #10377)

src/testdir/test_vim9_expr.vim
src/version.c
src/vim9compile.c

index 52cbeae527bc12ea8c88267a0f39e622621511ac..202bb58e696f5261f8189ae1c2792e4940385b64 100644 (file)
@@ -2143,6 +2143,19 @@ def Test_expr8_string()
   v9.CheckDefAndScriptFailure(['var x = "abc'], 'E114:', 1)
   v9.CheckDefAndScriptFailure(["var x = 'abc"], 'E115:', 1)
   v9.CheckDefFailure(["if 0", "echo 'xx", "endif"], 'E115', 2)
+
+  # interpolated string
+  var val = 'val'
+  var vv = $"some {val}"
+  assert_equal('some val', vv)
+  vv = $'other {val}'
+  assert_equal('other val', vv)
+
+  var x = 'x'
+  var vl = 'foo xxx bar xxx baz'
+              ->split($'x{x}x')
+              ->map((_, v: string) => v =~ 'bar')
+  assert_equal([false, true, false], vl)
 enddef
 
 def Test_expr8_vimvar()
index 792bd24b9d03c62be18708c743ba52ed7bb63ba1..6badc759ffc2edd298a7faa01236423cfa2a42b1 100644 (file)
@@ -746,6 +746,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    4914,
 /**/
     4913,
 /**/
index 15dab9862e0cb41ebef2a977796151b422cc3ea7..e95340c7ad5ae78590cfa66eb47867d5cfa13a8c 100644 (file)
@@ -981,7 +981,6 @@ compile_all_expr_in_str(char_u *str, int evalstr, cctx_T *cctx)
 {
     char_u     *p = str;
     char_u     *val;
-    char_u     save_c;
     int                count = 0;
 
     if (cctx->ctx_skip == SKIP_YES)
@@ -1051,11 +1050,8 @@ compile_all_expr_in_str(char_u *str, int evalstr, cctx_T *cctx)
            semsg(_(e_missing_close_curly_str), str);
            return FAIL;
        }
-       save_c = *block_end;
-       *block_end = NUL;
        if (compile_expr0(&block_start, cctx) == FAIL)
            return FAIL;
-       *block_end = save_c;
        may_generate_2STRING(-1, TRUE, cctx);
        ++count;