# HG changeset patch # User Kenichi Handa # Date 1246947996 0 # Node ID 479b2ec3af0e24adb7e08d01270b6c6b6500e1af # Parent 1896419e942280c89c5adcffb42d6766e4d24360 (unibyte_has_multibyte_table): Delete extern. (UNIBYTE_CHAR_HAS_MULTIBYTE_P): Delete it. diff -r 1896419e9422 -r 479b2ec3af0e src/character.h --- a/src/character.h Tue Jul 07 06:26:18 2009 +0000 +++ b/src/character.h Tue Jul 07 06:26:36 2009 +0000 @@ -87,12 +87,6 @@ #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 { \