updated for version 7.3.006
Problem: Can't build some multi-byte code with C89.
Solution: Move code to after declarations. (Joachim Schmitz)
diff --git a/src/spell.c b/src/spell.c
index b7e91ae..caffab6 100644
--- a/src/spell.c
+++ b/src/spell.c
@@ -4679,7 +4679,7 @@
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);