summaryrefslogtreecommitdiff
path: root/src/spell.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2010-09-18 13:36:49 +0200
committerBram Moolenaar <Bram@vim.org>2010-09-18 13:36:49 +0200
commit60bb4e1b46e94284558e37016733474b030cab47 (patch)
treec3486e83af693cf96b9b5791a5b40e25facd3744 /src/spell.c
parent217d285fddd80fb04b779b6e2888d57edb595f48 (diff)
downloadvim-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.c2
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);