comparison src/spell.c @ 2580:06aa43dde561 v7.3.006

updated for version 7.3.006 Problem: Can't build some multi-byte code with C89. Solution: Move code to after declarations. (Joachim Schmitz)
author Bram Moolenaar <bram@vim.org>
date Sat, 18 Sep 2010 13:36:49 +0200
parents 6c1d10a85398
children 103dea654543
comparison
equal deleted inserted replaced
2579:1c00ea3641a8 2580:06aa43dde561
4677 { 4677 {
4678 slang_T *slang; 4678 slang_T *slang;
4679 buf_T *buf; 4679 buf_T *buf;
4680 char_u fname[MAXPATHL]; 4680 char_u fname[MAXPATHL];
4681 4681
4682 /* Go through all buffers and handle 'spelllang'. */ //<VN> 4682 /* Go through all buffers and handle 'spelllang'. <VN> */
4683 for (buf = firstbuf; buf != NULL; buf = buf->b_next) 4683 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
4684 ga_clear(&buf->b_s.b_langp); 4684 ga_clear(&buf->b_s.b_langp);
4685 4685
4686 while (first_lang != NULL) 4686 while (first_lang != NULL)
4687 { 4687 {