changeset 103741:479b2ec3af0e

(unibyte_has_multibyte_table): Delete extern. (UNIBYTE_CHAR_HAS_MULTIBYTE_P): Delete it.
author Kenichi Handa <handa@m17n.org>
date Tue, 07 Jul 2009 06:26:36 +0000
parents 1896419e9422
children ffed171dcaeb
files src/character.h
diffstat 1 files changed, 0 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- 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 {				\