diff options
author | Kenichi Handa <handa@m17n.org> | 2009-07-07 06:26:36 +0000 |
---|---|---|
committer | Kenichi Handa <handa@m17n.org> | 2009-07-07 06:26:36 +0000 |
commit | f78d01e09e166d1581dc97a0fd148a8907686331 (patch) | |
tree | 4bb68a6f68a2f81898f02c54e5d557f449af7d86 /src/character.h | |
parent | 2e5db15c9da54febad8adcb72d3a33688f3171b2 (diff) | |
download | emacs-f78d01e09e166d1581dc97a0fd148a8907686331.tar.gz |
(unibyte_has_multibyte_table): Delete extern.
(UNIBYTE_CHAR_HAS_MULTIBYTE_P): Delete it.
Diffstat (limited to 'src/character.h')
-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]; #define unibyte_char_to_multibyte(c) \ ((c) < 256 ? unibyte_to_multibyte_table[(c)] : (c)) -/* Nth element is 1 iff unibyte char N can be mapped to a multibyte - char. */ -extern char unibyte_has_multibyte_table[256]; - -#define UNIBYTE_CHAR_HAS_MULTIBYTE_P(c) (unibyte_has_multibyte_table[(c)]) - /* If C is not ASCII, make it unibyte. */ #define MAKE_CHAR_UNIBYTE(c) \ do { \ |