diff options
author | zeertzjq <zeertzjq@outlook.com> | 2023-12-24 14:25:08 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-24 14:25:08 +0800 |
commit | 0b66ab42c76c41494a9d7fc715d310f1a1da929d (patch) | |
tree | 40e4807c0dfd00e37bfa0d01e0a2d9180b4eb5d7 /src/nvim/optionstr.c | |
parent | eae6727325111e596b49bb04337a467e8833397c (diff) | |
parent | 4587912527f48974e5b339af85db1c74bdd3cb43 (diff) | |
download | rneovim-0b66ab42c76c41494a9d7fc715d310f1a1da929d.tar.gz rneovim-0b66ab42c76c41494a9d7fc715d310f1a1da929d.tar.bz2 rneovim-0b66ab42c76c41494a9d7fc715d310f1a1da929d.zip |
Merge pull request #26642 from famiu/refactor/options/misc
refactor(options): miscellanous refactors
Diffstat (limited to 'src/nvim/optionstr.c')
-rw-r--r-- | src/nvim/optionstr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/optionstr.c b/src/nvim/optionstr.c index 41facb86eb..6886be3c25 100644 --- a/src/nvim/optionstr.c +++ b/src/nvim/optionstr.c @@ -291,7 +291,7 @@ static void set_string_option_global(vimoption_T *opt, char **varp) /// @param opt_flags OPT_FREE, OPT_LOCAL and/or OPT_GLOBAL. /// /// TODO(famiu): Remove this and its win/buf variants. -void set_string_option_direct(OptIndex opt_idx, const char *val, int opt_flags, int set_sid) +void set_string_option_direct(OptIndex opt_idx, const char *val, int opt_flags, scid_T set_sid) { vimoption_T *opt = get_option(opt_idx); |