From: tomo Date: Mon, 11 Feb 2002 13:19:02 +0000 (+0000) Subject: (load_char_attribute_maybe): Don't make directories. X-Git-Tag: r21-2-44-lazy-n7c~123 X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=6b9d9b8c94770674f409dca5265499a4a8532057;p=chise%2Fxemacs-chise.git- (load_char_attribute_maybe): Don't make directories. --- diff --git a/src/chartab.c b/src/chartab.c index c0beb15..7f23eea 100644 --- a/src/chartab.c +++ b/src/chartab.c @@ -3403,13 +3403,7 @@ load_char_attribute_maybe (Emchar ch, Lisp_Object attribute) db_dir = build_string ("../lib-src"); db_dir = Fexpand_file_name (build_string ("char-db"), db_dir); - if (NILP (Ffile_exists_p (db_dir))) - Fmake_directory_internal (db_dir); - db_dir = Fexpand_file_name (build_string ("system-char-id"), db_dir); - if (NILP (Ffile_exists_p (db_dir))) - Fmake_directory_internal (db_dir); - db_file = Fexpand_file_name (Fsymbol_name (attribute), db_dir); db = Fopen_database (db_file, Qnil, Qnil, Qnil, Qnil); if (!NILP (db))