diff options
| author | Kenichi Handa | 2009-07-07 06:26:36 +0000 |
|---|---|---|
| committer | Kenichi Handa | 2009-07-07 06:26:36 +0000 |
| commit | f78d01e09e166d1581dc97a0fd148a8907686331 (patch) | |
| tree | 4bb68a6f68a2f81898f02c54e5d557f449af7d86 | |
| parent | 2e5db15c9da54febad8adcb72d3a33688f3171b2 (diff) | |
| download | emacs-f78d01e09e166d1581dc97a0fd148a8907686331.tar.gz emacs-f78d01e09e166d1581dc97a0fd148a8907686331.zip | |
(unibyte_has_multibyte_table): Delete extern.
(UNIBYTE_CHAR_HAS_MULTIBYTE_P): Delete it.
| -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 { \ |