Revision: 6745 Author: ek.kato Date: Tue Sep 7 22:58:46 2010 Log: * uim/uim-helper.c (uim_helper_get_pathname) : Don't call uim_fatal_error even when the directory cannot be prepared.
http://code.google.com/p/uim/source/detail?r=6745 Modified: /trunk/uim/uim-helper.c ======================================= --- /trunk/uim/uim-helper.c Sun Apr 4 20:35:54 2010 +++ /trunk/uim/uim-helper.c Tue Sep 7 22:58:46 2010 @@ -207,7 +207,11 @@ return UIM_TRUE; path_error: - uim_fatal_error("uim_helper_get_pathname()"); +#if USE_UIM_NOTIFY && !UIM_NON_LIBUIM_PROG + uim_notify_fatal("uim_helper_get_pathname() failed"); +#else + fprintf(stderr, "uim_helper_get_pathname() failed\n"); +#endif helper_path[0] = '\0'; UIM_CATCH_ERROR_END();
