From 46de016ab4c72792065cbba234fda369687bc203 Mon Sep 17 00:00:00 2001 From: tomo Date: Thu, 2 Oct 2003 12:08:26 +0000 Subject: [PATCH] (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'. --- src/chartab.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) 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 -- 1.7.10.4