diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/character.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/character.h b/src/character.h index 075d36bf517..6f4bcdc6b02 100644 --- a/src/character.h +++ b/src/character.h | |||
| @@ -87,12 +87,6 @@ extern int unibyte_to_multibyte_table[256]; | |||
| 87 | #define unibyte_char_to_multibyte(c) \ | 87 | #define unibyte_char_to_multibyte(c) \ |
| 88 | ((c) < 256 ? unibyte_to_multibyte_table[(c)] : (c)) | 88 | ((c) < 256 ? unibyte_to_multibyte_table[(c)] : (c)) |
| 89 | 89 | ||
| 90 | /* Nth element is 1 iff unibyte char N can be mapped to a multibyte | ||
| 91 | char. */ | ||
| 92 | extern char unibyte_has_multibyte_table[256]; | ||
| 93 | |||
| 94 | #define UNIBYTE_CHAR_HAS_MULTIBYTE_P(c) (unibyte_has_multibyte_table[(c)]) | ||
| 95 | |||
| 96 | /* If C is not ASCII, make it unibyte. */ | 90 | /* If C is not ASCII, make it unibyte. */ |
| 97 | #define MAKE_CHAR_UNIBYTE(c) \ | 91 | #define MAKE_CHAR_UNIBYTE(c) \ |
| 98 | do { \ | 92 | do { \ |