From: tomo Date: Thu, 17 Jun 1999 12:27:02 +0000 (+0000) Subject: Include mule-charset.h if CHAR_IS_UCS4 is not defined. X-Git-Tag: r21-2-16-utf-2000-0_3-1~3 X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=5c746b314a1e1ff3f20b8ffbc68fb1cb0fe0d99e;p=chise%2Fxemacs-chise.git.1 Include mule-charset.h if CHAR_IS_UCS4 is not defined. --- diff --git a/src/character.h b/src/character.h index a396638..9690e11 100644 --- a/src/character.h +++ b/src/character.h @@ -24,6 +24,10 @@ Boston, MA 02111-1307, USA. */ #ifndef _XEMACS_CHARACTER_H #define _XEMACS_CHARACTER_H +#ifndef CHAR_IS_UCS4 +#include "mule-charset.h" +#else + /************************************************************************/ /* Definition of leading bytes */ /************************************************************************/ @@ -609,4 +613,5 @@ int copy_internal_to_external (CONST Bufbyte *internal, Bytecount len, Bytecount copy_external_to_internal (CONST unsigned char *external, int len, Bufbyte *internal); +#endif /* CHAR_IS_UCS4 */ #endif /* _XEMACS_CHARACTER_H */