aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/lua/executor.c
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2025-02-27 21:49:57 +0800
committerGitHub <noreply@github.com>2025-02-27 13:49:57 +0000
commit89d6d6f25cf22175e8c8eedef7181d8d618f9898 (patch)
tree43184d9926113f55248d56f77e8de2dc325679fd /src/nvim/lua/executor.c
parentf25dd7a8d54844effb44dad60e8154bc8172a67a (diff)
downloadrneovim-89d6d6f25cf22175e8c8eedef7181d8d618f9898.tar.gz
rneovim-89d6d6f25cf22175e8c8eedef7181d8d618f9898.tar.bz2
rneovim-89d6d6f25cf22175e8c8eedef7181d8d618f9898.zip
fix(lua): wrong script context for option set by func from nvim_exec2 (#32659)
Problem: Wrong script context for option set by function defined by nvim_exec2 in a Lua script. Solution: Call nlua_set_sctx() after adding SOURCING_LNUM and always set sc_lnum for a Lua script. This is a bug discovered when testing #28486. Not sure if this actually happens in practice, but it's easy to fix and required for #28486.
Diffstat (limited to 'src/nvim/lua/executor.c')
-rw-r--r--src/nvim/lua/executor.c16
1 files changed, 12 insertions, 4 deletions
diff --git a/src/nvim/lua/executor.c b/src/nvim/lua/executor.c
index c4c6c19439..bd00df395c 100644
--- a/src/nvim/lua/executor.c
+++ b/src/nvim/lua/executor.c
@@ -2106,12 +2106,20 @@ bool nlua_execute_on_key(int c, char *typed_buf)
return discard;
}
-// Sets the editor "script context" during Lua execution. Used by :verbose.
-// @param[out] current
+/// Sets the editor "script context" during Lua execution. Used by :verbose.
+/// @param[out] current
void nlua_set_sctx(sctx_T *current)
{
- if (p_verbose <= 0 || (current->sc_sid > 0 && current->sc_lnum > 0)
- || !script_is_lua(current->sc_sid)) {
+ if (!script_is_lua(current->sc_sid)) {
+ return;
+ }
+
+ // This function is called after adding SOURCING_LNUM to sc_lnum.
+ // SOURCING_LNUM can sometimes be non-zero (e.g. with ETYPE_UFUNC),
+ // but it's unrelated to the line number in Lua scripts.
+ current->sc_lnum = 0;
+
+ if (p_verbose <= 0) {
return;
}
lua_State *const lstate = global_lstate;