diff src/spell.c @ 3042:6cd0d6413a2e v7.3.293

updated for version 7.3.293 Problem: MSVC compiler has a problem with non-ASCII characters. Solution: Avoid non-ASCII characters. (Hong Xu)
author Bram Moolenaar <bram@vim.org>
date Fri, 02 Sep 2011 14:18:20 +0200
parents 25672ad7f377
children 75217982ea46
line wrap: on
line diff
--- a/src/spell.c
+++ b/src/spell.c
@@ -11197,7 +11197,7 @@ allcap_copy(word, wcopy)
 	    c = *s++;
 
 #ifdef FEAT_MBYTE
-	/* We only change ß to SS when we are certain latin1 is used.  It
+	/* We only change 0xdf to SS when we are certain latin1 is used.  It
 	 * would cause weird errors in other 8-bit encodings. */
 	if (enc_latin1like && c == 0xdf)
 	{