mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-07-01 03:22:48 -05:00
RDB: fix various UTF-8 glitches.
[originally from svn r1138]
This commit is contained in:
3
putty.h
3
putty.h
@ -78,7 +78,7 @@
|
||||
#define ATTR_DEFAULT 0x00980000UL
|
||||
#define ATTR_DEFFG 0x00080000UL
|
||||
#define ATTR_DEFBG 0x00900000UL
|
||||
#define ERASE_CHAR (ATTR_DEFAULT | ' ')
|
||||
#define ERASE_CHAR (ATTR_DEFAULT | ATTR_ASCII | ' ')
|
||||
#define ATTR_MASK 0xFFFFFF00UL
|
||||
#define CHAR_MASK 0x000000FFUL
|
||||
|
||||
@ -127,6 +127,7 @@ GLOBAL WCHAR unitab_font[256];
|
||||
GLOBAL WCHAR unitab_xterm[256];
|
||||
GLOBAL WCHAR unitab_oemcp[256];
|
||||
GLOBAL unsigned char unitab_ctrl[256];
|
||||
#define in_utf (utf || line_codepage==CP_UTF8)
|
||||
|
||||
#define LGXF_OVR 1 /* existing logfile overwrite */
|
||||
#define LGXF_APN 0 /* existing logfile append */
|
||||
|
Reference in New Issue
Block a user