From: tomo Date: Fri, 3 Oct 2003 04:27:32 +0000 (+0000) Subject: (open_chise_data_source_maybe): Use `CHISE_DS_open' instead of X-Git-Tag: r21-4-12-chise-0_21-pre7-for-libchise-b1-r0_2_0-pre6~1 X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=070c19c295c41221968f7465f5a8f41e80aeb7d7;p=chise%2Fxemacs-chise.git- (open_chise_data_source_maybe): Use `CHISE_DS_open' instead of `chise_open_data_source'. (Fclose_char_data_source): Use `CHISE_DS_close' instead of `chise_ds_close'. --- diff --git a/src/chartab.c b/src/chartab.c index 0c6e168..69a2c4d 100644 --- a/src/chartab.c +++ b/src/chartab.c @@ -3360,9 +3360,8 @@ open_chise_data_source_maybe () db_dir = Fexpand_file_name (build_string ("char-db"), db_dir); default_chise_data_source - = chise_open_data_source (CHISE_DS_Berkeley_DB, - XSTRING_DATA (db_dir), - DB_HASH, modemask); + = CHISE_DS_open (CHISE_DS_Berkeley_DB, XSTRING_DATA (db_dir), + DB_HASH, modemask); if (default_chise_data_source == NULL) return -1; } @@ -3375,7 +3374,7 @@ Close data-source of CHISE. ()) { #ifdef CHISE - int status = chise_ds_close (default_chise_data_source); + int status = CHISE_DS_close (default_chise_data_source); default_chise_data_source = NULL; if (status)