diff options
author | zeertzjq <zeertzjq@outlook.com> | 2022-07-25 19:01:48 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-25 19:01:48 +0800 |
commit | 6e9a7e7db81b899553548b82b42bf5c162109e19 (patch) | |
tree | a313a1b2f01708f784d3af2a98c3444592c3ac3d /src/nvim/spell.c | |
parent | 6c26d0b068a3aee4155f38bbf52e3568073ede8a (diff) | |
parent | aba3147cb62339714633b53f9ba114b08c5d6761 (diff) | |
download | rneovim-6e9a7e7db81b899553548b82b42bf5c162109e19.tar.gz rneovim-6e9a7e7db81b899553548b82b42bf5c162109e19.tar.bz2 rneovim-6e9a7e7db81b899553548b82b42bf5c162109e19.zip |
Merge pull request #19493 from zeertzjq/vim-8.2.1469
vim-patch:8.2.{1469,2254,2284,2285,2969,4228}: option fixes and refactorings
Diffstat (limited to 'src/nvim/spell.c')
-rw-r--r-- | src/nvim/spell.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/spell.c b/src/nvim/spell.c index 8bc9cda247..948e935907 100644 --- a/src/nvim/spell.c +++ b/src/nvim/spell.c @@ -6880,7 +6880,7 @@ void ex_spelldump(exarg_T *eap) if (no_spell_checking(curwin)) { return; } - get_option_value("spl", &dummy, &spl, OPT_LOCAL); + (void)get_option_value("spl", &dummy, &spl, OPT_LOCAL); // Create a new empty buffer in a new window. do_cmdline_cmd("new"); |