0
0
mirror of https://github.com/vim/vim.git synced 2025-07-25 10:54:51 -04:00

updated for version 7.0062

This commit is contained in:
Bram Moolenaar 2005-03-21 08:27:48 +00:00
parent e19defe17a
commit 2d3c0a9daa
2 changed files with 7 additions and 0 deletions

View File

@ -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 \

5
src/proto/spell.pro Normal file
View File

@ -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 : */