commit | d3184b57d2f1528abaf6079a564817a189a9b359 | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Fri Sep 02 14:18:20 2011 +0200 |
committer | Bram Moolenaar <Bram@vim.org> | Fri Sep 02 14:18:20 2011 +0200 |
tree | ced469c61afa7a91b8a730f552e49f403804fe7b | |
parent | 6c167c645124aca84ac3b57b5fd3b56f16593091 [diff] [blame] |
updated for version 7.3.293 Problem: MSVC compiler has a problem with non-ASCII characters. Solution: Avoid non-ASCII characters. (Hong Xu)
diff --git a/src/ascii.h b/src/ascii.h index 5256fc3..e824822 100644 --- a/src/ascii.h +++ b/src/ascii.h
@@ -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"