From: tomo Date: Thu, 2 Oct 2003 12:08:26 +0000 (+0000) Subject: (char_table_open_db_maybe): Use `chise_ds_get_feature' instead of X-Git-Tag: r21-4-12-chise-0_21-pre7-for-libchise-b1-r0_2_0-pre6~3 X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=46de016ab4c72792065cbba234fda369687bc203;p=chise%2Fxemacs-chise.git.1 (char_table_open_db_maybe): Use `chise_ds_get_feature' instead of `chise_ds_open_feature_table'. (char_table_close_db_maybe): Don't use `chise_ft_close'. --- diff --git a/src/chartab.c b/src/chartab.c index ea29d44..0c6e168 100644 --- a/src/chartab.c +++ b/src/chartab.c @@ -3398,9 +3398,8 @@ char_table_open_db_maybe (Lisp_Char_Table* cit) return -1; cit->feature_table - = chise_ds_open_feature_table (default_chise_data_source, - XSTRING_DATA (Fsymbol_name - (attribute))); + = chise_ds_get_feature (default_chise_data_source, + XSTRING_DATA (Fsymbol_name (attribute))); if (cit->feature_table == NULL) return -1; } @@ -3428,7 +3427,7 @@ char_table_close_db_maybe (Lisp_Char_Table* cit) #ifdef CHISE if (cit->feature_table != NULL) { - chise_ft_close (cit->feature_table); + /* chise_ft_close (cit->feature_table); */ cit->feature_table = NULL; } #else