diff options
| author | Kenichi Handa | 2002-05-30 00:26:21 +0000 |
|---|---|---|
| committer | Kenichi Handa | 2002-05-30 00:26:21 +0000 |
| commit | 315c0139fbe03bda13d8b287ac1e315fc053caf0 (patch) | |
| tree | fd9d562b4531a0731eca22f1fc9ef67c6365d435 /src | |
| parent | d40413a62083e51edc0bc1c0f7ac8d8d83dddb42 (diff) | |
| download | emacs-315c0139fbe03bda13d8b287ac1e315fc053caf0.tar.gz emacs-315c0139fbe03bda13d8b287ac1e315fc053caf0.zip | |
(sturct define_charset_arg_index): New enums charset_arg_min_code and
charset_arg_max_code.
(struct charset): New member char_index_offset.
Diffstat (limited to 'src')
| -rw-r--r-- | src/charset.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/charset.h b/src/charset.h index 4a21d8e2d81..051dbcb7142 100644 --- a/src/charset.h +++ b/src/charset.h | |||
| @@ -33,6 +33,8 @@ enum define_charset_arg_index | |||
| 33 | charset_arg_name, | 33 | charset_arg_name, |
| 34 | charset_arg_dimension, | 34 | charset_arg_dimension, |
| 35 | charset_arg_code_space, | 35 | charset_arg_code_space, |
| 36 | charset_arg_min_code, | ||
| 37 | charset_arg_max_code, | ||
| 36 | charset_arg_iso_final, | 38 | charset_arg_iso_final, |
| 37 | charset_arg_iso_revision, | 39 | charset_arg_iso_revision, |
| 38 | charset_arg_emacs_mule_id, | 40 | charset_arg_emacs_mule_id, |
| @@ -180,6 +182,10 @@ struct charset | |||
| 180 | /* Mininum and Maximum code points of the charset. */ | 182 | /* Mininum and Maximum code points of the charset. */ |
| 181 | unsigned min_code, max_code; | 183 | unsigned min_code, max_code; |
| 182 | 184 | ||
| 185 | /* Offset value used by macros CODE_POINT_TO_INDEX and | ||
| 186 | INDEX_TO_CODE_POINT. . */ | ||
| 187 | unsigned char_index_offset; | ||
| 188 | |||
| 183 | /* Mininum and Maximum character codes of the charset. If the | 189 | /* Mininum and Maximum character codes of the charset. If the |
| 184 | charset is compatible with ASCII, min_char is a minimum non-ASCII | 190 | charset is compatible with ASCII, min_char is a minimum non-ASCII |
| 185 | character of the charset. */ | 191 | character of the charset. */ |