diff options
author | James McCoy <jamessan@jamessan.com> | 2017-03-07 09:13:54 -0500 |
---|---|---|
committer | James McCoy <jamessan@jamessan.com> | 2017-03-11 20:32:02 -0500 |
commit | 5674057e3a5597f792a077d714bd7d32af81bfc8 (patch) | |
tree | ff54fd877cecf5f289915af290efe0702aa1166d /src/nvim/ex_docmd.c | |
parent | b2b15e6e137d7be2b01bf2174791f36bd12981bd (diff) | |
download | rneovim-5674057e3a5597f792a077d714bd7d32af81bfc8.tar.gz rneovim-5674057e3a5597f792a077d714bd7d32af81bfc8.tar.bz2 rneovim-5674057e3a5597f792a077d714bd7d32af81bfc8.zip |
vim-patch:7.4.2069
Problem: spell.c is too big.
Solution: Split it in spell file handling and spell checking.
https://github.com/vim/vim/commit/9ccfebddc3ff2a3c2853cf706fd4c26f639bf381
Diffstat (limited to 'src/nvim/ex_docmd.c')
-rw-r--r-- | src/nvim/ex_docmd.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/ex_docmd.c b/src/nvim/ex_docmd.c index 87b6959101..41cc7d70f7 100644 --- a/src/nvim/ex_docmd.c +++ b/src/nvim/ex_docmd.c @@ -50,6 +50,7 @@ #include "nvim/screen.h" #include "nvim/search.h" #include "nvim/spell.h" +#include "nvim/spellfile.h" #include "nvim/strings.h" #include "nvim/syntax.h" #include "nvim/tag.h" |