From 5c746b314a1e1ff3f20b8ffbc68fb1cb0fe0d99e Mon Sep 17 00:00:00 2001 From: tomo Date: Thu, 17 Jun 1999 12:27:02 +0000 Subject: [PATCH] Include mule-charset.h if CHAR_IS_UCS4 is not defined. --- src/character.h | 5 +++++ 1 file changed, 5 insertions(+) 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 */ -- 1.7.10.4