# HG changeset patch # User vimboss # Date 1111393668 0 # Node ID 920a993902e8332e3fd539a54997278364fdbcf3 # Parent 5175af353b81f0c7c34392f7c28da49c84fc12a2 updated for version 7.0062 diff --git a/Filelist b/Filelist --- 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 --- /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 : */