From c589d9a60f7d729f67e6b8a7cc97179dbf2dbf9f Mon Sep 17 00:00:00 2001 From: tomo Date: Fri, 12 May 2006 10:57:10 +0000 Subject: [PATCH] (install-tomoyo-package): Use `condition-case' to avoid error. --- TOMOYO-MK | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/TOMOYO-MK b/TOMOYO-MK index 1e9edbb..7c70016 100644 --- a/TOMOYO-MK +++ b/TOMOYO-MK @@ -41,7 +41,9 @@ (expand-file-name "lisp" PACKAGEDIR))) (delete-file "./auto-autoloads.el") - (delete-file "./custom-load.el") + (condition-case nil + (delete-file "./custom-load.el") + (error nil)) ) ;;; TOMOYO-MK ends here -- 1.7.10.4