diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-08-20 20:13:45 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-08-20 20:13:45 +0200 |
commit | 5843f5f37b0632e2d706abc9014bfd7d98f7b02e (patch) | |
tree | 2f1af5fd16214dfdf8edc8717e06a8b0aab81c1a /src/spell.c | |
parent | 9a4a8c4d5993c6371486c895a515c2ad351e9aaa (diff) | |
download | vim-git-5843f5f37b0632e2d706abc9014bfd7d98f7b02e.tar.gz |
patch 8.1.1891: functions used in one file are globalv8.1.1891
Problem: Functions used in one file are global.
Solution: Add "static". (Yegappan Lakshmanan, closes #4840)
Diffstat (limited to 'src/spell.c')
-rw-r--r-- | src/spell.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/spell.c b/src/spell.c index 83c232c52..cf2efe87a 100644 --- a/src/spell.c +++ b/src/spell.c @@ -338,6 +338,7 @@ static int count_syllables(slang_T *slang, char_u *word); static void clear_midword(win_T *buf); static void use_midword(slang_T *lp, win_T *buf); static int find_region(char_u *rp, char_u *region); +static int spell_iswordp_nmw(char_u *p, win_T *wp); static int check_need_cap(linenr_T lnum, colnr_T col); static void spell_find_suggest(char_u *badptr, int badlen, suginfo_T *su, int maxcount, int banbadword, int need_cap, int interactive); #ifdef FEAT_EVAL @@ -3052,7 +3053,7 @@ spell_iswordp( * Return TRUE if "p" points to a word character. * Unlike spell_iswordp() this doesn't check for "midword" characters. */ - int + static int spell_iswordp_nmw(char_u *p, win_T *wp) { int c; |