From: tomo Date: Sun, 10 Aug 2003 03:31:38 +0000 (+0000) Subject: Include when `CHISE' is defined. X-Git-Tag: r21-4-12-libchise-0_21-pre3~7 X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=14acc6bbad16535c89859722cf74af08f7786c39;p=chise%2Fxemacs-chise.git.1 Include when `CHISE' is defined. (struct Lisp_Char_Table): Add new member `ds' and `feature_table' when `CHISE' is defined. --- diff --git a/src/chartab.h b/src/chartab.h index 20c0bff..4cdc49c 100644 --- a/src/chartab.h +++ b/src/chartab.h @@ -31,6 +31,10 @@ Boston, MA 02111-1307, USA. */ #ifdef UTF2000 +#ifdef CHISE +#include +#endif + #ifdef HAVE_CHISE_CLIENT #include "database.h" #endif @@ -170,7 +174,10 @@ struct Lisp_Char_Table Lisp_Object table; Lisp_Object default_value; Lisp_Object name; -#ifndef CHISE +#ifdef CHISE + CHISE_DS ds; + CHISE_Feature_Table *feature_table; +#else Lisp_Object db; #endif unsigned char unloaded;