(load_char_attribute_maybe): Don't make directories.
authortomo <tomo>
Mon, 11 Feb 2002 13:19:02 +0000 (13:19 +0000)
committertomo <tomo>
Mon, 11 Feb 2002 13:19:02 +0000 (13:19 +0000)
src/chartab.c

index c0beb15..7f23eea 100644 (file)
@@ -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))