diff 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
line wrap: on
line diff
--- 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);