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/spell.h | |
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/spell.h')
-rw-r--r-- | src/nvim/spell.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/nvim/spell.h b/src/nvim/spell.h index 3a03cb2ef6..e950644a6d 100644 --- a/src/nvim/spell.h +++ b/src/nvim/spell.h @@ -3,6 +3,8 @@ #include <stdbool.h> +#include "nvim/spell_defs.h" + #ifdef INCLUDE_GENERATED_DECLARATIONS # include "spell.h.generated.h" #endif |