diff options
Diffstat (limited to 'src/nvim/option_defs.h')
-rw-r--r-- | src/nvim/option_defs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/option_defs.h b/src/nvim/option_defs.h index 0f86b17176..d846bd0ae0 100644 --- a/src/nvim/option_defs.h +++ b/src/nvim/option_defs.h @@ -838,7 +838,7 @@ enum { /// Stores an identifier of a script or channel that last set an option. typedef struct { - scid_T script_id; /// Script ID or one of SID_* special values. + sctx_T script_ctx; /// script context where the option was last set uint64_t channel_id; /// Only used when script_id is SID_API_CLIENT. } LastSet; |