Skip to content

Commit

Permalink
updated for version 7.3.293
Browse files Browse the repository at this point in the history
Problem:    MSVC compiler has a problem with non-ASCII characters.
Solution:   Avoid non-ASCII characters. (Hong Xu)
  • Loading branch information
brammool committed Sep 2, 2011
1 parent 71f29fb commit a26ab77
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/ascii.h
Expand Up @@ -123,7 +123,7 @@
#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"
Expand Down
2 changes: 1 addition & 1 deletion src/spell.c
Expand Up @@ -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)
{
Expand Down
2 changes: 2 additions & 0 deletions src/version.c
Expand Up @@ -709,6 +709,8 @@ static char *(features[]) =

static int included_patches[] =
{ /* Add new patch number below this line */
/**/
293,
/**/
292,
/**/
Expand Down

0 comments on commit a26ab77

Please sign in to comment.