aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/spellfile.h
diff options
context:
space:
mode:
authorJames McCoy <jamessan@jamessan.com>2017-03-07 09:13:54 -0500
committerJames McCoy <jamessan@jamessan.com>2017-03-11 20:32:02 -0500
commit5674057e3a5597f792a077d714bd7d32af81bfc8 (patch)
treeff54fd877cecf5f289915af290efe0702aa1166d /src/nvim/spellfile.h
parentb2b15e6e137d7be2b01bf2174791f36bd12981bd (diff)
downloadrneovim-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/spellfile.h')
-rw-r--r--src/nvim/spellfile.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/nvim/spellfile.h b/src/nvim/spellfile.h
new file mode 100644
index 0000000000..89acddda0d
--- /dev/null
+++ b/src/nvim/spellfile.h
@@ -0,0 +1,12 @@
+#ifndef NVIM_SPELLFILE_H
+#define NVIM_SPELLFILE_H
+
+#include <stdbool.h>
+
+#include "nvim/spell_defs.h"
+#include "nvim/types.h"
+
+#ifdef INCLUDE_GENERATED_DECLARATIONS
+# include "spellfile.h.generated.h"
+#endif
+#endif // NVIM_SPELLFILE_H