diff options
| author | Kenichi Handa | 2000-09-07 13:02:27 +0000 |
|---|---|---|
| committer | Kenichi Handa | 2000-09-07 13:02:27 +0000 |
| commit | 2b9eeded9345a716d48de9d0678b86669dea3827 (patch) | |
| tree | de7aba8e4080be3a80d1160a304fc81223d6a960 /src | |
| parent | fd6f711b51c82dc0d72c9288af5e3f5bab841979 (diff) | |
| download | emacs-2b9eeded9345a716d48de9d0678b86669dea3827.tar.gz emacs-2b9eeded9345a716d48de9d0678b86669dea3827.zip | |
(MIN_CHARSET_OFFICIAL_DIMENSION1): Define it as 0x80, not 0x81.
(MIN_CHAR_OFFICIAL_DIMENSION1): Define it as ((0x81 - 0x70) << 7).
Diffstat (limited to 'src')
| -rw-r--r-- | src/charset.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/charset.h b/src/charset.h index cdc7d9a0de3..20b1fb72a7b 100644 --- a/src/charset.h +++ b/src/charset.h | |||
| @@ -106,7 +106,7 @@ Boston, MA 02111-1307, USA. */ | |||
| 106 | #define LEADING_CODE_EXT_MAX 0xFE | 106 | #define LEADING_CODE_EXT_MAX 0xFE |
| 107 | 107 | ||
| 108 | /* Definition of minimum/maximum charset of each DIMENSION. */ | 108 | /* Definition of minimum/maximum charset of each DIMENSION. */ |
| 109 | #define MIN_CHARSET_OFFICIAL_DIMENSION1 0x81 | 109 | #define MIN_CHARSET_OFFICIAL_DIMENSION1 0x80 |
| 110 | #define MAX_CHARSET_OFFICIAL_DIMENSION1 0x8F | 110 | #define MAX_CHARSET_OFFICIAL_DIMENSION1 0x8F |
| 111 | #define MIN_CHARSET_OFFICIAL_DIMENSION2 0x90 | 111 | #define MIN_CHARSET_OFFICIAL_DIMENSION2 0x90 |
| 112 | #define MAX_CHARSET_OFFICIAL_DIMENSION2 0x99 | 112 | #define MAX_CHARSET_OFFICIAL_DIMENSION2 0x99 |
| @@ -204,7 +204,7 @@ extern int charset_big5_2; /* Big5 Level 2 (Chinese Traditional) */ | |||
| 204 | 204 | ||
| 205 | /* Minimum character code of character of each DIMENSION. */ | 205 | /* Minimum character code of character of each DIMENSION. */ |
| 206 | #define MIN_CHAR_OFFICIAL_DIMENSION1 \ | 206 | #define MIN_CHAR_OFFICIAL_DIMENSION1 \ |
| 207 | ((MIN_CHARSET_OFFICIAL_DIMENSION1 - 0x70) << 7) | 207 | ((0x81 - 0x70) << 7) |
| 208 | #define MIN_CHAR_PRIVATE_DIMENSION1 \ | 208 | #define MIN_CHAR_PRIVATE_DIMENSION1 \ |
| 209 | ((MIN_CHARSET_PRIVATE_DIMENSION1 - 0x70) << 7) | 209 | ((MIN_CHARSET_PRIVATE_DIMENSION1 - 0x70) << 7) |
| 210 | #define MIN_CHAR_OFFICIAL_DIMENSION2 \ | 210 | #define MIN_CHAR_OFFICIAL_DIMENSION2 \ |