]> granicus.if.org Git - vim/commitdiff
updated for version 7.3.293 v7.3.293
authorBram Moolenaar <Bram@vim.org>
Fri, 2 Sep 2011 12:18:20 +0000 (14:18 +0200)
committerBram Moolenaar <Bram@vim.org>
Fri, 2 Sep 2011 12:18:20 +0000 (14:18 +0200)
Problem:    MSVC compiler has a problem with non-ASCII characters.
Solution:   Avoid non-ASCII characters. (Hong Xu)

src/ascii.h
src/spell.c
src/version.c

index 5256fc32decc3142c027d55eb1ba957af42c23dc..e824822b30add54350df6f3baebbcde140efb622 100644 (file)
 #define DCS            0x90    /* Device Control String */
 #define STERM          0x9c    /* String Terminator */
 
-#define POUND          '£'
+#define POUND          '\xA3'
 
 #define CTRL_F_STR     "\056"
 #define CTRL_H_STR     "\026"
index eade2f7c758a9c4c515519cc17de8cc12fe74373..464d4d0d18b6f5fff0244428ebeec0f9e26aa50d 100644 (file)
@@ -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)
        {
index e2e3085e8095eb263ec68ea7b6eeab5eaced3fc5..d66b4fba26e2cac74b770e2ebc68df8a72baa1d9 100644 (file)
@@ -709,6 +709,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    293,
 /**/
     292,
 /**/