diff options
author | Bram Moolenaar <Bram@vim.org> | 2010-09-18 13:36:49 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2010-09-18 13:36:49 +0200 |
commit | 60bb4e1b46e94284558e37016733474b030cab47 (patch) | |
tree | c3486e83af693cf96b9b5791a5b40e25facd3744 /src/spell.c | |
parent | 217d285fddd80fb04b779b6e2888d57edb595f48 (diff) | |
download | vim-git-60bb4e1b46e94284558e37016733474b030cab47.tar.gz |
updated for version 7.3.006v7.3.006
Problem: Can't build some multi-byte code with C89.
Solution: Move code to after declarations. (Joachim Schmitz)
Diffstat (limited to 'src/spell.c')
-rw-r--r-- | src/spell.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/spell.c b/src/spell.c index b7e91ae36..caffab6be 100644 --- a/src/spell.c +++ b/src/spell.c @@ -4679,7 +4679,7 @@ spell_free_all() buf_T *buf; char_u fname[MAXPATHL]; - /* Go through all buffers and handle 'spelllang'. */ //<VN> + /* Go through all buffers and handle 'spelllang'. <VN> */ for (buf = firstbuf; buf != NULL; buf = buf->b_next) ga_clear(&buf->b_s.b_langp); |