From: tomo Date: Thu, 29 Jun 2006 22:06:34 +0000 (+0000) Subject: (syms_of_chartab): Define `{<-|->}{subsumptive|denotational}' when X-Git-Tag: r21-4-19-chise-0_23-2^20~49 X-Git-Url: http://git.chise.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d87e6307f03d869d899c447fd0c00495e6d80749;p=chise%2Fxemacs-chise.git (syms_of_chartab): Define `{<-|->}{subsumptive|denotational}' when HAVE_CONCORD is defined. --- diff --git a/src/chartab.c b/src/chartab.c index 3cf4c35..22313a1 100644 --- a/src/chartab.c +++ b/src/chartab.c @@ -4699,6 +4699,12 @@ word_boundary_p (Emchar c1, Emchar c2) void syms_of_chartab (void) { +#if defined(UTF2000) || defined(HAVE_CONCORD) + defsymbol (&Q_subsumptive, "->subsumptive"); + defsymbol (&Q_subsumptive_from, "<-subsumptive"); + defsymbol (&Q_denotational, "->denotational"); + defsymbol (&Q_denotational_from, "<-denotational"); +#endif #ifdef UTF2000 INIT_LRECORD_IMPLEMENTATION (uint8_byte_table); INIT_LRECORD_IMPLEMENTATION (uint16_byte_table); @@ -4706,10 +4712,6 @@ syms_of_chartab (void) defsymbol (&Qto_ucs, "=>ucs"); defsymbol (&Q_ucs_unified, "->ucs-unified"); - defsymbol (&Q_subsumptive, "->subsumptive"); - defsymbol (&Q_subsumptive_from, "<-subsumptive"); - defsymbol (&Q_denotational, "->denotational"); - defsymbol (&Q_denotational_from, "<-denotational"); defsymbol (&Q_identical, "->identical"); defsymbol (&Q_identical_from, "<-identical"); defsymbol (&Q_component, "->ideographic-component-forms");