comparison src/proto/typval.pro @ 28813:3626ca6a20ea v8.2.4930

patch 8.2.4930: interpolated string expression requires escaping Commit: https://github.com/vim/vim/commit/0abc2871c105882ed1c1effb9a7757fad8a395bd Author: Bram Moolenaar <Bram@vim.org> Date: Tue May 10 13:24:30 2022 +0100 patch 8.2.4930: interpolated string expression requires escaping Problem: Interpolated string expression requires escaping. Solution: Do not require escaping in the expression.
author Bram Moolenaar <Bram@vim.org>
date Tue, 10 May 2022 14:30:04 +0200
parents 723c7d940cba
children 86eb4aba16c3
comparison
equal deleted inserted replaced
28812:483371d05cd5 28813:3626ca6a20ea
66 char_u *typval_tostring(typval_T *arg, int quotes); 66 char_u *typval_tostring(typval_T *arg, int quotes);
67 int tv_islocked(typval_T *tv); 67 int tv_islocked(typval_T *tv);
68 int tv_equal(typval_T *tv1, typval_T *tv2, int ic, int recursive); 68 int tv_equal(typval_T *tv1, typval_T *tv2, int ic, int recursive);
69 int eval_option(char_u **arg, typval_T *rettv, int evaluate); 69 int eval_option(char_u **arg, typval_T *rettv, int evaluate);
70 int eval_number(char_u **arg, typval_T *rettv, int evaluate, int want_string); 70 int eval_number(char_u **arg, typval_T *rettv, int evaluate, int want_string);
71 int eval_string(char_u **arg, typval_T *rettv, int evaluate); 71 int eval_string(char_u **arg, typval_T *rettv, int evaluate, int interpolate);
72 int eval_lit_string(char_u **arg, typval_T *rettv, int evaluate); 72 int eval_lit_string(char_u **arg, typval_T *rettv, int evaluate, int interpolate);
73 int eval_interp_string(char_u **arg, typval_T *rettv, int evaluate);
73 char_u *tv2string(typval_T *tv, char_u **tofree, char_u *numbuf, int copyID); 74 char_u *tv2string(typval_T *tv, char_u **tofree, char_u *numbuf, int copyID);
74 int eval_env_var(char_u **arg, typval_T *rettv, int evaluate); 75 int eval_env_var(char_u **arg, typval_T *rettv, int evaluate);
75 int eval_interp_string(char_u **arg, typval_T *rettv, int evaluate);
76 linenr_T tv_get_lnum(typval_T *argvars); 76 linenr_T tv_get_lnum(typval_T *argvars);
77 linenr_T tv_get_lnum_buf(typval_T *argvars, buf_T *buf); 77 linenr_T tv_get_lnum_buf(typval_T *argvars, buf_T *buf);
78 buf_T *tv_get_buf(typval_T *tv, int curtab_only); 78 buf_T *tv_get_buf(typval_T *tv, int curtab_only);
79 buf_T *tv_get_buf_from_arg(typval_T *tv); 79 buf_T *tv_get_buf_from_arg(typval_T *tv);
80 /* vim: set ft=c : */ 80 /* vim: set ft=c : */