0
0
mirror of https://github.com/vim/vim.git synced 2025-10-28 09:27:14 -04:00

patch 9.1.1808: Option insecure flags not copied when splitting window

Problem:  Option insecure flags not copied when splitting window.
Solution: Move window-local insecure flags to winopt_T and copy them
          properly (zeertzjq).

closes: #18434

Signed-off-by: zeertzjq <zeertzjq@outlook.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
This commit is contained in:
zeertzjq
2025-09-29 19:30:07 +00:00
committed by Christian Brabandt
parent fec5586a45
commit b3740f4b00
15 changed files with 185 additions and 57 deletions

View File

@@ -235,7 +235,6 @@ bexpr_eval(
{
win_T *cw;
long winnr = 0;
buf_T *save_curbuf;
int use_sandbox;
static char_u *result = NULL;
size_t len;
@@ -254,15 +253,8 @@ bexpr_eval(
set_vim_var_string(VV_BEVAL_TEXT, text, -1);
vim_free(text);
/*
* Temporarily change the curbuf, so that we can determine whether
* the buffer-local balloonexpr option was set insecurely.
*/
save_curbuf = curbuf;
curbuf = wp->w_buffer;
use_sandbox = was_set_insecurely((char_u *)"balloonexpr",
*curbuf->b_p_bexpr == NUL ? 0 : OPT_LOCAL);
curbuf = save_curbuf;
use_sandbox = was_set_insecurely(wp, (char_u *)"balloonexpr",
*wp->w_buffer->b_p_bexpr == NUL ? 0 : OPT_LOCAL);
if (use_sandbox)
++sandbox;
++textlock;