From 6b9d9b8c94770674f409dca5265499a4a8532057 Mon Sep 17 00:00:00 2001 From: tomo Date: Mon, 11 Feb 2002 13:19:02 +0000 Subject: [PATCH] (load_char_attribute_maybe): Don't make directories. --- src/chartab.c | 6 ------ 1 file changed, 6 deletions(-) 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)) -- 1.7.10.4