diff options
author | Famiu Haque <famiuhaque@proton.me> | 2023-10-11 18:03:22 +0600 |
---|---|---|
committer | Famiu Haque <famiuhaque@proton.me> | 2023-10-17 00:08:47 +0600 |
commit | 36e4901cbdb1c2b4b1d88cf9a7da157bf725fae4 (patch) | |
tree | b77a1089983ddfb1a808e8690e6b8414247c7241 /src/nvim/option.c | |
parent | 5df4fdf253f9c9cc35f9f5f16c6d0ba9d87b4c71 (diff) | |
download | rneovim-36e4901cbdb1c2b4b1d88cf9a7da157bf725fae4.tar.gz rneovim-36e4901cbdb1c2b4b1d88cf9a7da157bf725fae4.tar.bz2 rneovim-36e4901cbdb1c2b4b1d88cf9a7da157bf725fae4.zip |
refactor(options): remove `os_op`
Diffstat (limited to 'src/nvim/option.c')
-rw-r--r-- | src/nvim/option.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/nvim/option.c b/src/nvim/option.c index b6964481e9..9426d3924a 100644 --- a/src/nvim/option.c +++ b/src/nvim/option.c @@ -1173,8 +1173,7 @@ static void do_set_option_string(int opt_idx, int opt_flags, char **argp, int ne // options. Note: when setting 'syntax' or 'filetype' autocommands may // be triggered that can cause havoc. *errmsg = did_set_string_option(curbuf, curwin, opt_idx, (char **)varp, oldval, - errbuf, errbuflen, - opt_flags, op, value_checked); + errbuf, errbuflen, opt_flags, value_checked); secure = secure_saved; |