diff options
author | Matthieu Coudron <mcoudron@hotmail.com> | 2020-11-18 22:52:49 +0100 |
---|---|---|
committer | Matthieu Coudron <mcoudron@hotmail.com> | 2020-11-23 21:06:56 +0100 |
commit | 4f1fc0f6d514980700152b7c05e5c92ec379f0d7 (patch) | |
tree | 56488620cbef1d2d13e7c9866364ea1d7292da17 /src/nvim/path.c | |
parent | 7dfeadb0fcbcedeafc357e60f0b7b2b8916afeaf (diff) | |
download | rneovim-4f1fc0f6d514980700152b7c05e5c92ec379f0d7.tar.gz rneovim-4f1fc0f6d514980700152b7c05e5c92ec379f0d7.tar.bz2 rneovim-4f1fc0f6d514980700152b7c05e5c92ec379f0d7.zip |
refactor: pass window to was_set_insecurely
working on get_foldtext and wanted to get rid of the curwin backup/restore.
Turns out it's not possible else f_foldtext is run on the same window.
Kept the cleanup anyway.
Diffstat (limited to 'src/nvim/path.c')
-rw-r--r-- | src/nvim/path.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/nvim/path.c b/src/nvim/path.c index 793f917f06..f52fbbd5c8 100644 --- a/src/nvim/path.c +++ b/src/nvim/path.c @@ -1610,10 +1610,10 @@ void simplify_filename(char_u *filename) static char *eval_includeexpr(const char *const ptr, const size_t len) { - set_vim_var_string(VV_FNAME, ptr, (ptrdiff_t) len); - char *res = (char *) eval_to_string_safe( - curbuf->b_p_inex, NULL, was_set_insecurely((char_u *)"includeexpr", - OPT_LOCAL)); + set_vim_var_string(VV_FNAME, ptr, (ptrdiff_t)len); + char *res = (char *)eval_to_string_safe( + curbuf->b_p_inex, NULL, + was_set_insecurely(curwin, (char_u *)"includeexpr", OPT_LOCAL)); set_vim_var_string(VV_FNAME, NULL, 0); return res; } |