From 9cc8f5b279e82261b13ae6ffd030c879bfc62786 Mon Sep 17 00:00:00 2001 From: tomo Date: Thu, 5 Feb 2004 16:03:07 +0000 Subject: [PATCH] (Q_subsumptive): Renamed from Q_unified. (Q_subsumptive_from): Renamed from Q_unified_from. (Fchar_feature): Use `Q_subsumptive_from' instead of `Q_unified_from'. (Fput_char_attribute): Likewise; Use `Q_subsumptive' instead of `Q_unified'. (syms_of_chartab): Rename `->unified' to `->subsumptive' and `<-unified' to `<-subsumptive'. --- src/chartab.c | 27 ++++++++++++++------------- 1 file changed, 14 insertions(+), 13 deletions(-) diff --git a/src/chartab.c b/src/chartab.c index 69cf73a..a753ac4 100644 --- a/src/chartab.c +++ b/src/chartab.c @@ -1138,8 +1138,8 @@ Lisp_Object Qcomposition; Lisp_Object Q_decomposition; Lisp_Object Q_denotational; Lisp_Object Q_denotational_from; -Lisp_Object Q_unified; -Lisp_Object Q_unified_from; +Lisp_Object Q_subsumptive; +Lisp_Object Q_subsumptive_from; Lisp_Object Qto_ucs; Lisp_Object Q_ucs_unified; Lisp_Object Qcompat; @@ -3313,7 +3313,7 @@ Return DEFAULT-VALUE if the value is not exist. } } - if ( !(EQ (attribute, Q_unified_from)) && + if ( !(EQ (attribute, Q_subsumptive_from)) && !(EQ (attribute, Q_denotational_from)) && ( (NILP (char_rel_max) || (INTP (char_rel_max) && @@ -3325,7 +3325,7 @@ Return DEFAULT-VALUE if the value is not exist. if ( (name_str[0] != '=') || (name_str[1] == '>') ) { Lisp_Object ancestors - = Fget_char_attribute (character, Q_unified_from, Qnil); + = Fget_char_attribute (character, Q_subsumptive_from, Qnil); if (NILP (ancestors)) ancestors @@ -3343,7 +3343,8 @@ Return DEFAULT-VALUE if the value is not exist. return ret; ancestors = XCDR (ancestors); - ret = Fget_char_attribute (ancestor, Q_unified_from, Qnil); + ret = Fget_char_attribute (ancestor, + Q_subsumptive_from, Qnil); if (!NILP (ret)) ancestors = nconc2 (Fcopy_sequence (ancestors), ret); } @@ -3477,8 +3478,8 @@ Store CHARACTER's ATTRIBUTE with VALUE. Fput_char_attribute (make_char (c), Q_ucs_unified, Fcons (character, ret)); } - else if ( EQ (attribute, Q_unified) || - EQ (attribute, Q_unified_from) || + else if ( EQ (attribute, Q_subsumptive) || + EQ (attribute, Q_subsumptive_from) || EQ (attribute, Q_denotational) || EQ (attribute, Q_denotational_from) ) { @@ -3497,10 +3498,10 @@ Store CHARACTER's ATTRIBUTE with VALUE. Lisp_Object rev_feature; Lisp_Object ffv; - if (EQ (attribute, Q_unified)) - rev_feature = Q_unified_from; - else if (EQ (attribute, Q_unified_from)) - rev_feature = Q_unified; + if (EQ (attribute, Q_subsumptive)) + rev_feature = Q_subsumptive_from; + else if (EQ (attribute, Q_subsumptive_from)) + rev_feature = Q_subsumptive; else if (EQ (attribute, Q_denotational)) rev_feature = Q_denotational_from; else /* if (EQ (attribute, Q_denotational_from)) */ @@ -4514,8 +4515,8 @@ syms_of_chartab (void) defsymbol (&Qto_ucs, "=>ucs"); defsymbol (&Q_ucs_unified, "->ucs-unified"); - defsymbol (&Q_unified, "->unified"); - defsymbol (&Q_unified_from, "<-unified"); + defsymbol (&Q_subsumptive, "->subsumptive"); + defsymbol (&Q_subsumptive_from, "<-subsumptive"); defsymbol (&Q_denotational, "->denotational"); defsymbol (&Q_denotational_from, "<-denotational"); defsymbol (&Qcomposition, "composition"); -- 1.7.10.4