diff options
author | Bram Moolenaar <Bram@vim.org> | 2011-09-02 14:18:20 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2011-09-02 14:18:20 +0200 |
commit | d3184b57d2f1528abaf6079a564817a189a9b359 (patch) | |
tree | ced469c61afa7a91b8a730f552e49f403804fe7b /src/spell.c | |
parent | 6c167c645124aca84ac3b57b5fd3b56f16593091 (diff) | |
download | vim-git-d3184b57d2f1528abaf6079a564817a189a9b359.tar.gz |
updated for version 7.3.293v7.3.293
Problem: MSVC compiler has a problem with non-ASCII characters.
Solution: Avoid non-ASCII characters. (Hong Xu)
Diffstat (limited to 'src/spell.c')
-rw-r--r-- | src/spell.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/spell.c b/src/spell.c index eade2f7c7..464d4d0d1 100644 --- 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) { |