diff options
author | Famiu Haque <famiuhaque@proton.me> | 2023-12-18 04:10:41 +0600 |
---|---|---|
committer | Famiu Haque <famiuhaque@proton.me> | 2023-12-23 11:09:00 +0600 |
commit | 4d98ec2fa45a100292c490acc606dfb55a0573c1 (patch) | |
tree | 2bf293765042a4c39e219b98ce9420e197cb6535 /src/nvim/optionstr.c | |
parent | 1d2af15a956458f09b526d23f1d0135da9b90bb4 (diff) | |
download | rneovim-4d98ec2fa45a100292c490acc606dfb55a0573c1.tar.gz rneovim-4d98ec2fa45a100292c490acc606dfb55a0573c1.tar.bz2 rneovim-4d98ec2fa45a100292c490acc606dfb55a0573c1.zip |
refactor(options): move some functions from options.c to option.c
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); |