summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2005-03-21 08:27:48 +0000
committerBram Moolenaar <Bram@vim.org>2005-03-21 08:27:48 +0000
commit2d3c0a9daab5762a310588f4718c5661273c404b (patch)
treeacc1d23b4eba4d22c047c48f9d191946c69751c0
parente19defe17a5d2b184bfe205961f81d934a68f1d0 (diff)
downloadvim-git-2d3c0a9daab5762a310588f4718c5661273c404b.tar.gz
updated for version 7.0062v7.0062
-rw-r--r--Filelist2
-rw-r--r--src/proto/spell.pro5
2 files changed, 7 insertions, 0 deletions
diff --git a/Filelist b/Filelist
index baffc611d..e6ecf5095 100644
--- a/Filelist
+++ b/Filelist
@@ -57,6 +57,7 @@ SRC_ALL1 = \
src/screen.c \
src/search.c \
src/structs.h \
+ src/spell.c \
src/syntax.c \
src/tag.c \
src/term.c \
@@ -112,6 +113,7 @@ SRC_ALL2 = \
src/proto/regexp.pro \
src/proto/screen.pro \
src/proto/search.pro \
+ src/proto/spell.pro \
src/proto/syntax.pro \
src/proto/tag.pro \
src/proto/term.pro \
diff --git a/src/proto/spell.pro b/src/proto/spell.pro
new file mode 100644
index 000000000..c802b168c
--- /dev/null
+++ b/src/proto/spell.pro
@@ -0,0 +1,5 @@
+/* spell.c */
+int spell_check __ARGS((win_T *wp, char_u *ptr, int *attrp));
+char_u *did_set_spelllang __ARGS((buf_T *buf));
+void spell_reload __ARGS((void));
+/* vim: set ft=c : */